Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 934 Bytes

File metadata and controls

30 lines (22 loc) · 934 Bytes

Timestamp

Timestamp info with seconds and nanos.

Properties

Name Type Description Notes
seconds int Timestamp seconds. [optional]
nanos int Timestamp nanos. [optional]

Example

from gb_retailapi_client.models.timestamp import Timestamp

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

# convert the object into a dict
timestamp_dict = timestamp_instance.to_dict()
# create an instance of Timestamp from a dict
timestamp_form_dict = timestamp.from_dict(timestamp_dict)

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