You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
fromconekta.models.customer_payment_methods_dataimportCustomerPaymentMethodsData# TODO update the JSON string belowjson="{}"# create an instance of CustomerPaymentMethodsData from a JSON stringcustomer_payment_methods_data_instance=CustomerPaymentMethodsData.from_json(json)
# print the JSON string representation of the objectprint(CustomerPaymentMethodsData.to_json())
# convert the object into a dictcustomer_payment_methods_data_dict=customer_payment_methods_data_instance.to_dict()
# create an instance of CustomerPaymentMethodsData from a dictcustomer_payment_methods_data_from_dict=CustomerPaymentMethodsData.from_dict(customer_payment_methods_data_dict)