Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.06 KB

PaymentMethodResponse.md

File metadata and controls

33 lines (24 loc) · 1.06 KB

PaymentMethodResponse

Properties

Name Type Description Notes
type str
id str
object str
created_at int
parent_id str [optional]

Example

from conekta.models.payment_method_response import PaymentMethodResponse

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

# convert the object into a dict
payment_method_response_dict = payment_method_response_instance.to_dict()
# create an instance of PaymentMethodResponse from a dict
payment_method_response_from_dict = PaymentMethodResponse.from_dict(payment_method_response_dict)

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