Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.06 KB

File metadata and controls

28 lines (20 loc) · 1.06 KB

GetCompaniesResponseAllOf

Properties

Name Type Description Notes
data List[CompanyResponse] [optional]

Example

from conekta.models.get_companies_response_all_of import GetCompaniesResponseAllOf

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

# convert the object into a dict
get_companies_response_all_of_dict = get_companies_response_all_of_instance.to_dict()
# create an instance of GetCompaniesResponseAllOf from a dict
get_companies_response_all_of_form_dict = get_companies_response_all_of.from_dict(get_companies_response_all_of_dict)

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