| 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.charge_response import ChargeResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ChargeResponse from a JSON string
charge_response_instance = ChargeResponse.from_json(json)
# print the JSON string representation of the object
print(ChargeResponse.to_json())
# convert the object into a dict
charge_response_dict = charge_response_instance.to_dict()
# create an instance of ChargeResponse from a dict
charge_response_from_dict = ChargeResponse.from_dict(charge_response_dict)