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.create_customer_payment_methods_responseimportCreateCustomerPaymentMethodsResponse# TODO update the JSON string belowjson="{}"# create an instance of CreateCustomerPaymentMethodsResponse from a JSON stringcreate_customer_payment_methods_response_instance=CreateCustomerPaymentMethodsResponse.from_json(json)
# print the JSON string representation of the objectprint(CreateCustomerPaymentMethodsResponse.to_json())
# convert the object into a dictcreate_customer_payment_methods_response_dict=create_customer_payment_methods_response_instance.to_dict()
# create an instance of CreateCustomerPaymentMethodsResponse from a dictcreate_customer_payment_methods_response_from_dict=CreateCustomerPaymentMethodsResponse.from_dict(create_customer_payment_methods_response_dict)