Represents an organization in API responses
| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | ||
| name | str | ||
| settings | OrganizationSettings |
from codegen_api_client.models.organization_response import OrganizationResponse
# TODO update the JSON string below
json = "{}"
# create an instance of OrganizationResponse from a JSON string
organization_response_instance = OrganizationResponse.from_json(json)
# print the JSON string representation of the object
print(OrganizationResponse.to_json())
# convert the object into a dict
organization_response_dict = organization_response_instance.to_dict()
# create an instance of OrganizationResponse from a dict
organization_response_from_dict = OrganizationResponse.from_dict(organization_response_dict)