Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

OrganizationCreateRequest

Request object for creating a new organization

Properties

Name Type Description Notes
name str The Organization name
security OrganizationSecurity [optional]

Example

from cosmotech_api.models.organization_create_request import OrganizationCreateRequest

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

# convert the object into a dict
organization_create_request_dict = organization_create_request_instance.to_dict()
# create an instance of OrganizationCreateRequest from a dict
organization_create_request_from_dict = OrganizationCreateRequest.from_dict(organization_create_request_dict)

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