Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 877 Bytes

TimestampSpec.md

File metadata and controls

29 lines (20 loc) · 877 Bytes

TimestampSpec

A timestamp specification.

Properties

Name Type Description Notes

Example

from waylay.services.registry.models.timestamp_spec import TimestampSpec

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

# convert the object into a dict
timestamp_spec_dict = timestamp_spec_instance.to_dict()
# create an instance of TimestampSpec from a dict
timestamp_spec_form_dict = timestamp_spec.from_dict(timestamp_spec_dict)

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