from conekta.models.get_plans_response_all_of import GetPlansResponseAllOf
# TODO update the JSON string below
json = "{}"
# create an instance of GetPlansResponseAllOf from a JSON string
get_plans_response_all_of_instance = GetPlansResponseAllOf.from_json(json)
# print the JSON string representation of the object
print GetPlansResponseAllOf.to_json()
# convert the object into a dict
get_plans_response_all_of_dict = get_plans_response_all_of_instance.to_dict()
# create an instance of GetPlansResponseAllOf from a dict
get_plans_response_all_of_form_dict = get_plans_response_all_of.from_dict(get_plans_response_all_of_dict)
[Back to Model list] [Back to API list] [Back to README]