Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 821 Bytes

File metadata and controls

30 lines (21 loc) · 821 Bytes

Duration

Properties

Name Type Description Notes
amount int
unit str

Example

from instana_client.models.duration import Duration

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

# convert the object into a dict
duration_dict = duration_instance.to_dict()
# create an instance of Duration from a dict
duration_from_dict = Duration.from_dict(duration_dict)

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