Timestamp info with seconds and nanos.
| Name | Type | Description | Notes |
|---|---|---|---|
| seconds | int | Timestamp seconds. | [optional] |
| nanos | int | Timestamp nanos. | [optional] |
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)