Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.57 KB

File metadata and controls

29 lines (20 loc) · 1.57 KB

EcommerceV1MiscellaneousCustomStorefrontInstructionsResource

Properties

Name Type Description Notes
instructions str Markdown setup instructions for connecting a custom sales channel to your store. [optional]

Example

from hostinger_api.models.ecommerce_v1_miscellaneous_custom_storefront_instructions_resource import EcommerceV1MiscellaneousCustomStorefrontInstructionsResource

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

# convert the object into a dict
ecommerce_v1_miscellaneous_custom_storefront_instructions_resource_dict = ecommerce_v1_miscellaneous_custom_storefront_instructions_resource_instance.to_dict()
# create an instance of EcommerceV1MiscellaneousCustomStorefrontInstructionsResource from a dict
ecommerce_v1_miscellaneous_custom_storefront_instructions_resource_from_dict = EcommerceV1MiscellaneousCustomStorefrontInstructionsResource.from_dict(ecommerce_v1_miscellaneous_custom_storefront_instructions_resource_dict)

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