| Name |
Type |
Description |
Notes |
| seconds |
int |
Timestamp seconds. |
[optional] |
| nanos |
int |
Timestamp nanos. |
[optional] |
from gb_retailapi_client.models.product_dto_publish_time import ProductDtoPublishTime
# TODO update the JSON string below
json = "{}"
# create an instance of ProductDtoPublishTime from a JSON string
product_dto_publish_time_instance = ProductDtoPublishTime.from_json(json)
# print the JSON string representation of the object
print ProductDtoPublishTime.to_json()
# convert the object into a dict
product_dto_publish_time_dict = product_dto_publish_time_instance.to_dict()
# create an instance of ProductDtoPublishTime from a dict
product_dto_publish_time_form_dict = product_dto_publish_time.from_dict(product_dto_publish_time_dict)
[Back to Model list] [Back to API list] [Back to README]