Skip to content

Latest commit

 

History

History
47 lines (39 loc) · 1.74 KB

File metadata and controls

47 lines (39 loc) · 1.74 KB

CustomerPaymentMethodsData

Properties

Name Type Description Notes
type str
id str
object str
created_at int
parent_id str [optional]
reference str [optional]
barcode str [optional]
barcode_url str [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]

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_form_dict = customer_payment_methods_data.from_dict(customer_payment_methods_data_dict)

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