Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

UpdatePaymentMethods

Properties

Name Type Description Notes
name str The name of the payment method holder [optional]
expires_at int The expiration date of the payment method in Unix timestamp format [optional]

Example

from conekta.models.update_payment_methods import UpdatePaymentMethods

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

# convert the object into a dict
update_payment_methods_dict = update_payment_methods_instance.to_dict()
# create an instance of UpdatePaymentMethods from a dict
update_payment_methods_from_dict = UpdatePaymentMethods.from_dict(update_payment_methods_dict)

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