Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.05 KB

File metadata and controls

30 lines (21 loc) · 1.05 KB

PaymentMethodSpeiRequest

Properties

Name Type Description Notes
type str Type of payment method
expires_at int [optional]

Example

from conekta.models.payment_method_spei_request import PaymentMethodSpeiRequest

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

# convert the object into a dict
payment_method_spei_request_dict = payment_method_spei_request_instance.to_dict()
# create an instance of PaymentMethodSpeiRequest from a dict
payment_method_spei_request_from_dict = PaymentMethodSpeiRequest.from_dict(payment_method_spei_request_dict)

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