Name | Type | Description | Notes |
---|---|---|---|
tenant_id | str | [optional] | |
id | str | [optional] | |
name | str | The updated name of the organization. | [optional] |
description | str | The updated description of the organization. | [optional] |
custom_data | object | arbitrary | [optional] |
is_mfa_required | bool | [optional] | |
branding | ListApplicationOrganizations200ResponseInnerBranding | [optional] | |
created_at | float | [optional] |
from py_logto.models.update_organization_request import UpdateOrganizationRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateOrganizationRequest from a JSON string
update_organization_request_instance = UpdateOrganizationRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateOrganizationRequest.to_json())
# convert the object into a dict
update_organization_request_dict = update_organization_request_instance.to_dict()
# create an instance of UpdateOrganizationRequest from a dict
update_organization_request_from_dict = UpdateOrganizationRequest.from_dict(update_organization_request_dict)