Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

OrderRefundRequest.md

File metadata and controls

31 lines (22 loc) · 1.03 KB

OrderRefundRequest

Properties

Name Type Description Notes
amount int Amount to be refunded in cents
expires_at int [optional]
reason str Reason for the refund

Example

from conekta.models.order_refund_request import OrderRefundRequest

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

# convert the object into a dict
order_refund_request_dict = order_refund_request_instance.to_dict()
# create an instance of OrderRefundRequest from a dict
order_refund_request_from_dict = OrderRefundRequest.from_dict(order_refund_request_dict)

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