| 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] | |
| fee | int | [optional] | |
| id | str | [optional] | |
| livemode | bool | [optional] | |
| object | str | [optional] | |
| order_id | str | [optional] | |
| paid_at | int | [optional] | |
| payment_method | ChargeResponsePaymentMethod | [optional] | |
| reference_id | str | Reference ID of the charge | [optional] |
| refunds | ChargeResponseRefunds | [optional] | |
| status | str | [optional] |
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_form_dict = charge_response.from_dict(charge_response_dict)