Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

UpdateOrganizationResponseModel

Properties

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

Example

from hyperstack.models.update_organization_response_model import UpdateOrganizationResponseModel

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

# convert the object into a dict
update_organization_response_model_dict = update_organization_response_model_instance.to_dict()
# create an instance of UpdateOrganizationResponseModel from a dict
update_organization_response_model_from_dict = UpdateOrganizationResponseModel.from_dict(update_organization_response_model_dict)

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