Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.2 KB

File metadata and controls

30 lines (21 loc) · 1.2 KB

OrganizationsList200ResponseInner

Properties

Name Type Description Notes
name str Organization name [optional]
machine_name str Organization machine name [optional]

Example

from quantcdn.models.organizations_list200_response_inner import OrganizationsList200ResponseInner

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

# convert the object into a dict
organizations_list200_response_inner_dict = organizations_list200_response_inner_instance.to_dict()
# create an instance of OrganizationsList200ResponseInner from a dict
organizations_list200_response_inner_from_dict = OrganizationsList200ResponseInner.from_dict(organizations_list200_response_inner_dict)

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