Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 769 Bytes

File metadata and controls

28 lines (19 loc) · 769 Bytes

Division

Properties

Name Type Description Notes

Example

from instana_client.models.division import Division

# TODO update the JSON string below
json = "{}"
# create an instance of Division from a JSON string
division_instance = Division.from_json(json)
# print the JSON string representation of the object
print(Division.to_json())

# convert the object into a dict
division_dict = division_instance.to_dict()
# create an instance of Division from a dict
division_from_dict = Division.from_dict(division_dict)

[Back to Model list] [Back to API list] [Back to README]