Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.33 KB

File metadata and controls

32 lines (24 loc) · 1.33 KB

ChargeRequestPaymentMethod

Payment method used in the charge. Go to the payment methods section for more details

Properties

Name Type Description Notes
expires_at int Method expiration date as unix timestamp [optional]
type str
token_id str [optional]
payment_source_id str [optional]

Example

from conekta.models.charge_request_payment_method import ChargeRequestPaymentMethod

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

# convert the object into a dict
charge_request_payment_method_dict = charge_request_payment_method_instance.to_dict()
# create an instance of ChargeRequestPaymentMethod from a dict
charge_request_payment_method_form_dict = charge_request_payment_method.from_dict(charge_request_payment_method_dict)

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