A timestamp expressed as a age relative to now
Name | Type | Description | Notes |
---|
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)