Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 1.82 KB

ChargeOrderResponse.md

File metadata and controls

47 lines (38 loc) · 1.82 KB

ChargeOrderResponse

Properties

Name Type Description Notes
amount int [optional]
channel ChargeResponseChannel [optional]
created_at int [optional]
currency str [optional]
customer_id str [optional]
description str [optional]
device_fingerprint str [optional]
failure_code str [optional]
failure_message str [optional]
id str [optional]
livemode bool [optional]
monthly_installments int [optional]
object str [optional]
order_id str [optional]
paid_at int [optional]
payment_method ChargeOrderResponsePaymentMethod [optional]
reference_id str Reference ID of the charge [optional]
refunds List[object] [optional]
status str [optional]

Example

from conekta.models.charge_order_response import ChargeOrderResponse

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

# convert the object into a dict
charge_order_response_dict = charge_order_response_instance.to_dict()
# create an instance of ChargeOrderResponse from a dict
charge_order_response_from_dict = ChargeOrderResponse.from_dict(charge_order_response_dict)

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