Skip to content

Latest commit

 

History

History
48 lines (39 loc) · 1.87 KB

CreateCustomerPaymentMethodsResponse.md

File metadata and controls

48 lines (39 loc) · 1.87 KB

CreateCustomerPaymentMethodsResponse

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.create_customer_payment_methods_response import CreateCustomerPaymentMethodsResponse

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

# convert the object into a dict
create_customer_payment_methods_response_dict = create_customer_payment_methods_response_instance.to_dict()
# create an instance of CreateCustomerPaymentMethodsResponse from a dict
create_customer_payment_methods_response_from_dict = CreateCustomerPaymentMethodsResponse.from_dict(create_customer_payment_methods_response_dict)

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