You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sales channel type. Only "custom" channels can be created via the API.
[optional]
external_id
str
External identifier for the sales channel.
[optional]
Example
fromhostinger_api.models.ecommerce_v1_store_store_request_sales_channelimportEcommerceV1StoreStoreRequestSalesChannel# TODO update the JSON string belowjson="{}"# create an instance of EcommerceV1StoreStoreRequestSalesChannel from a JSON stringecommerce_v1_store_store_request_sales_channel_instance=EcommerceV1StoreStoreRequestSalesChannel.from_json(json)
# print the JSON string representation of the objectprint(EcommerceV1StoreStoreRequestSalesChannel.to_json())
# convert the object into a dictecommerce_v1_store_store_request_sales_channel_dict=ecommerce_v1_store_store_request_sales_channel_instance.to_dict()
# create an instance of EcommerceV1StoreStoreRequestSalesChannel from a dictecommerce_v1_store_store_request_sales_channel_from_dict=EcommerceV1StoreStoreRequestSalesChannel.from_dict(ecommerce_v1_store_store_request_sales_channel_dict)