| Name | Type | Description | Notes |
|---|---|---|---|
| amount | int | ||
| channel | ChargeResponseChannel | [optional] | |
| created_at | int | ||
| currency | str | ||
| customer_id | str | [optional] | |
| description | str | [optional] | |
| device_fingerprint | str | [optional] | |
| failure_code | str | [optional] | |
| failure_message | str | [optional] | |
| id | str | Charge ID | |
| livemode | bool | Whether the charge was made in live mode or not | |
| object | str | ||
| order_id | str | Order ID | |
| paid_at | int | Payment date | [optional] |
| payment_method | ChargeResponsePaymentMethod | [optional] | |
| reference_id | str | Reference ID of the charge | [optional] |
| refunds | ChargeResponseRefunds | [optional] | |
| status | str | Charge status |
from conekta.models.charges_order_response_all_of_data import ChargesOrderResponseAllOfData
# TODO update the JSON string below
json = "{}"
# create an instance of ChargesOrderResponseAllOfData from a JSON string
charges_order_response_all_of_data_instance = ChargesOrderResponseAllOfData.from_json(json)
# print the JSON string representation of the object
print(ChargesOrderResponseAllOfData.to_json())
# convert the object into a dict
charges_order_response_all_of_data_dict = charges_order_response_all_of_data_instance.to_dict()
# create an instance of ChargesOrderResponseAllOfData from a dict
charges_order_response_all_of_data_from_dict = ChargesOrderResponseAllOfData.from_dict(charges_order_response_all_of_data_dict)