Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.41 KB

Organization.md

File metadata and controls

43 lines (34 loc) · 1.41 KB

Organization

Properties

Name Type Description Notes
name str Name of the organization
id str ID of the organization
short_id int Unique identifier for the organization
status OrganizationState
total_tenants int
country str
industry List[str]
monthly_cloud_spend int
cloud_service_providers List[str]
website str
changelogs List[object]
created_at datetime
updated_at datetime
created_by str
updated_by str

Example

from onelens_backend_client.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_form_dict = organization.from_dict(organization_dict)

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