Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.04 KB

CreateOrganizationRequest.md

File metadata and controls

29 lines (20 loc) · 1.04 KB

CreateOrganizationRequest

Properties

Name Type Description Notes
name str Name of the organization

Example

from onelens_backend_client.models.create_organization_request import CreateOrganizationRequest

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

# convert the object into a dict
create_organization_request_dict = create_organization_request_instance.to_dict()
# create an instance of CreateOrganizationRequest from a dict
create_organization_request_form_dict = create_organization_request.from_dict(create_organization_request_dict)

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