Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.41 KB

File metadata and controls

34 lines (25 loc) · 1.41 KB

EcommerceV1StoreStoreResource

Properties

Name Type Description Notes
id str Store ID [optional]
name str Store name [optional]
created_at datetime Creation date [optional]
updated_at datetime Last update date [optional]
version str Store platform version identifier (e.g. "v2_standalone"). [optional]
company_name str Company name [optional]

Example

from hostinger_api.models.ecommerce_v1_store_store_resource import EcommerceV1StoreStoreResource

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

# convert the object into a dict
ecommerce_v1_store_store_resource_dict = ecommerce_v1_store_store_resource_instance.to_dict()
# create an instance of EcommerceV1StoreStoreResource from a dict
ecommerce_v1_store_store_resource_from_dict = EcommerceV1StoreStoreResource.from_dict(ecommerce_v1_store_store_resource_dict)

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