Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 945 Bytes

TimestampAbsolute.md

File metadata and controls

29 lines (20 loc) · 945 Bytes

TimestampAbsolute

An absolute timestamp as an ISO8601 string

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.timestamp_absolute import TimestampAbsolute

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

# convert the object into a dict
timestamp_absolute_dict = timestamp_absolute_instance.to_dict()
# create an instance of TimestampAbsolute from a dict
timestamp_absolute_form_dict = timestamp_absolute.from_dict(timestamp_absolute_dict)

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