Skip to content

Latest commit

 

History

History
50 lines (41 loc) · 1.99 KB

File metadata and controls

50 lines (41 loc) · 1.99 KB

CustomerPaymentMethodsData

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 str [optional]
provider str [optional]
last4 str [optional]
bin str [optional]
card_type str [optional]
exp_month str [optional]
exp_year str [optional]
brand str [optional]
name str [optional]
default bool [optional]
visible_on_checkout bool [optional]
payment_source_status str [optional]
bank str Bank name for the SPEI payment method [optional]

Example

from conekta.models.customer_payment_methods_data import CustomerPaymentMethodsData

# TODO update the JSON string below
json = "{}"
# create an instance of CustomerPaymentMethodsData from a JSON string
customer_payment_methods_data_instance = CustomerPaymentMethodsData.from_json(json)
# print the JSON string representation of the object
print(CustomerPaymentMethodsData.to_json())

# convert the object into a dict
customer_payment_methods_data_dict = customer_payment_methods_data_instance.to_dict()
# create an instance of CustomerPaymentMethodsData from a dict
customer_payment_methods_data_from_dict = CustomerPaymentMethodsData.from_dict(customer_payment_methods_data_dict)

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