Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 1.63 KB

File metadata and controls

43 lines (34 loc) · 1.63 KB

GetOrganizationByIDResponse

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.get_organization_by_id_response import GetOrganizationByIDResponse

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

# convert the object into a dict
get_organization_by_id_response_dict = get_organization_by_id_response_instance.to_dict()
# create an instance of GetOrganizationByIDResponse from a dict
get_organization_by_id_response_form_dict = get_organization_by_id_response.from_dict(get_organization_by_id_response_dict)

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