Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.03 KB

UpdateOrganizationPayload.md

File metadata and controls

29 lines (20 loc) · 1.03 KB

UpdateOrganizationPayload

Properties

Name Type Description Notes
name str The new name for the organition

Example

from hyperstack.models.update_organization_payload import UpdateOrganizationPayload

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

# convert the object into a dict
update_organization_payload_dict = update_organization_payload_instance.to_dict()
# create an instance of UpdateOrganizationPayload from a dict
update_organization_payload_from_dict = UpdateOrganizationPayload.from_dict(update_organization_payload_dict)

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