Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 896 Bytes

PaymentMethod.md

File metadata and controls

30 lines (21 loc) · 896 Bytes

PaymentMethod

Properties

Name Type Description Notes
type str [optional]
object str

Example

from conekta.models.payment_method import PaymentMethod

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

# convert the object into a dict
payment_method_dict = payment_method_instance.to_dict()
# create an instance of PaymentMethod from a dict
payment_method_from_dict = PaymentMethod.from_dict(payment_method_dict)

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