Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

OrganizationModel.md

File metadata and controls

31 lines (22 loc) · 1.03 KB

OrganizationModel

Properties

Name Type Description Notes
status bool [optional]
message str [optional]
organization OrganizationInfoModel [optional]

Example

from hyperstack.models.organization_model import OrganizationModel

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

# convert the object into a dict
organization_model_dict = organization_model_instance.to_dict()
# create an instance of OrganizationModel from a dict
organization_model_form_dict = organization_model.from_dict(organization_model_dict)

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