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.1.0/reference/createsubscription] tutorial for more information on how to tokenize cards. | |
expires_at | int | [optional] |
from conekta.models.customer_payment_methods_request import CustomerPaymentMethodsRequest
# TODO update the JSON string below
json = "{}"
# create an instance of CustomerPaymentMethodsRequest from a JSON string
customer_payment_methods_request_instance = CustomerPaymentMethodsRequest.from_json(json)
# print the JSON string representation of the object
print(CustomerPaymentMethodsRequest.to_json())
# convert the object into a dict
customer_payment_methods_request_dict = customer_payment_methods_request_instance.to_dict()
# create an instance of CustomerPaymentMethodsRequest from a dict
customer_payment_methods_request_from_dict = CustomerPaymentMethodsRequest.from_dict(customer_payment_methods_request_dict)