Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.06 KB

File metadata and controls

29 lines (20 loc) · 1.06 KB

UserOrganizationsResponse

Properties

Name Type Description Notes
organizations List[OrganizationFields] [optional]

Example

from hyperstack.models.user_organizations_response import UserOrganizationsResponse

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

# convert the object into a dict
user_organizations_response_dict = user_organizations_response_instance.to_dict()
# create an instance of UserOrganizationsResponse from a dict
user_organizations_response_from_dict = UserOrganizationsResponse.from_dict(user_organizations_response_dict)

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