Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 884 Bytes

TimestampAge.md

File metadata and controls

29 lines (20 loc) · 884 Bytes

TimestampAge

A timestamp expressed as a age relative to now

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.timestamp_age import TimestampAge

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

# convert the object into a dict
timestamp_age_dict = timestamp_age_instance.to_dict()
# create an instance of TimestampAge from a dict
timestamp_age_form_dict = timestamp_age.from_dict(timestamp_age_dict)

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