Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.3 KB

File metadata and controls

29 lines (20 loc) · 1.3 KB

EcommerceV1ProductProductResponseResource

Properties

Name Type Description Notes
data EcommerceV1ProductProductResource [optional]

Example

from hostinger_api.models.ecommerce_v1_product_product_response_resource import EcommerceV1ProductProductResponseResource

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

# convert the object into a dict
ecommerce_v1_product_product_response_resource_dict = ecommerce_v1_product_product_response_resource_instance.to_dict()
# create an instance of EcommerceV1ProductProductResponseResource from a dict
ecommerce_v1_product_product_response_resource_from_dict = EcommerceV1ProductProductResponseResource.from_dict(ecommerce_v1_product_product_response_resource_dict)

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