Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

OrganizationInfoModel

Properties

Name Type Description Notes
id int
name str
users List[OrganizationUserModel] [optional]
created_at datetime [optional]

Example

from hyperstack.models.organization_info_model import OrganizationInfoModel

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

# convert the object into a dict
organization_info_model_dict = organization_info_model_instance.to_dict()
# create an instance of OrganizationInfoModel from a dict
organization_info_model_form_dict = organization_info_model.from_dict(organization_info_model_dict)

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