Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.23 KB

File metadata and controls

34 lines (25 loc) · 1.23 KB

Organization

An Organization

Properties

Name Type Description Notes
id str The Organization unique identifier [readonly]
name str The Organization name
create_info OrganizationEditInfo The details of the Organization creation
update_info OrganizationEditInfo The details of the Organization last update
security OrganizationSecurity

Example

from cosmotech_api.models.organization import Organization

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

# convert the object into a dict
organization_dict = organization_instance.to_dict()
# create an instance of Organization from a dict
organization_from_dict = Organization.from_dict(organization_dict)

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