Name |
Type |
Description |
Notes |
type |
str |
|
|
id |
str |
|
|
object |
str |
|
|
created_at |
int |
|
|
parent_id |
str |
|
[optional] |
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]