| Name | Type | Description | Notes |
|---|---|---|---|
| type | str | ||
| id | str | ||
| object | str | ||
| created_at | int | ||
| parent_id | str | [optional] | |
| agreements | List[PaymentMethodCashResponseAllOfAgreements] | [optional] | |
| reference | str | [optional] | |
| barcode | str | [optional] | |
| barcode_url | str | URL to the barcode image, reference is the same as barcode | [optional] |
| expires_at | int | [optional] | |
| provider | str | [optional] |
from conekta.models.payment_method_cash_response import PaymentMethodCashResponse
# TODO update the JSON string below
json = "{}"
# create an instance of PaymentMethodCashResponse from a JSON string
payment_method_cash_response_instance = PaymentMethodCashResponse.from_json(json)
# print the JSON string representation of the object
print(PaymentMethodCashResponse.to_json())
# convert the object into a dict
payment_method_cash_response_dict = payment_method_cash_response_instance.to_dict()
# create an instance of PaymentMethodCashResponse from a dict
payment_method_cash_response_from_dict = PaymentMethodCashResponse.from_dict(payment_method_cash_response_dict)