Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 862 Bytes

TTLDuration.md

File metadata and controls

29 lines (20 loc) · 862 Bytes

TTLDuration

Specifies the duration of a TTL interval.

Properties

Name Type Description Notes

Example

from waylay.services.data.models.ttl_duration import TTLDuration

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

# convert the object into a dict
ttl_duration_dict = ttl_duration_instance.to_dict()
# create an instance of TTLDuration from a dict
ttl_duration_form_dict = ttl_duration.from_dict(ttl_duration_dict)

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