Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.18 KB

File metadata and controls

31 lines (22 loc) · 1.18 KB

GetOrganizationResponseModel

Properties

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

Example

from hyperstack.models.get_organization_response_model import GetOrganizationResponseModel

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

# convert the object into a dict
get_organization_response_model_dict = get_organization_response_model_instance.to_dict()
# create an instance of GetOrganizationResponseModel from a dict
get_organization_response_model_from_dict = GetOrganizationResponseModel.from_dict(get_organization_response_model_dict)

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