Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.51 KB

File metadata and controls

39 lines (30 loc) · 1.51 KB

PaymentMethodCashResponse

Properties

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]

Example

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)

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