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
Whether to email the customer about the cancellation. Defaults to true.
[optional]
Example
fromhostinger_api.models.ecommerce_v1_order_cancel_requestimportEcommerceV1OrderCancelRequest# TODO update the JSON string belowjson="{}"# create an instance of EcommerceV1OrderCancelRequest from a JSON stringecommerce_v1_order_cancel_request_instance=EcommerceV1OrderCancelRequest.from_json(json)
# print the JSON string representation of the objectprint(EcommerceV1OrderCancelRequest.to_json())
# convert the object into a dictecommerce_v1_order_cancel_request_dict=ecommerce_v1_order_cancel_request_instance.to_dict()
# create an instance of EcommerceV1OrderCancelRequest from a dictecommerce_v1_order_cancel_request_from_dict=EcommerceV1OrderCancelRequest.from_dict(ecommerce_v1_order_cancel_request_dict)