Payment method used in the charge. Go to the payment methods section for more details
| 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] |
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)