Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.13 KB

File metadata and controls

29 lines (20 loc) · 1.13 KB

UpdatePaymentOrderRequest

Properties

Name Type Description Notes
expired bool Whether to manually expire the order. If set to `true`, the order status will be updated to `Expired`.

Example

from cobo_waas2.models.update_payment_order_request import UpdatePaymentOrderRequest

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

# convert the object into a dict
update_payment_order_request_dict = update_payment_order_request_instance.to_dict()
# create an instance of UpdatePaymentOrderRequest from a dict
update_payment_order_request_from_dict = UpdatePaymentOrderRequest.from_dict(update_payment_order_request_dict)

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