Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.54 KB

File metadata and controls

32 lines (23 loc) · 1.54 KB

CreateCustomerPaymentMethodsRequest

Contains details of the payment methods that the customer has active or has used in Conekta

Properties

Name Type Description Notes
type str Type of payment method
token_id str Token id that will be used to create a "card" type payment method. See the (subscriptions)[https://developers.conekta.com/v2.2.0/reference/createsubscription] tutorial for more information on how to tokenize cards.
expires_at int [optional]

Example

from conekta.models.create_customer_payment_methods_request import CreateCustomerPaymentMethodsRequest

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

# convert the object into a dict
create_customer_payment_methods_request_dict = create_customer_payment_methods_request_instance.to_dict()
# create an instance of CreateCustomerPaymentMethodsRequest from a dict
create_customer_payment_methods_request_from_dict = CreateCustomerPaymentMethodsRequest.from_dict(create_customer_payment_methods_request_dict)

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