Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.43 KB

CreateOrganizationRequest.md

File metadata and controls

35 lines (26 loc) · 1.43 KB

CreateOrganizationRequest

Properties

Name Type Description Notes
tenant_id str [optional]
name str The name of the organization.
description str The description of the organization. [optional]
custom_data object arbitrary [optional]
is_mfa_required bool [optional]
branding ListApplicationOrganizations200ResponseInnerBranding [optional]
created_at float [optional]

Example

from py_logto.models.create_organization_request import CreateOrganizationRequest

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

# convert the object into a dict
create_organization_request_dict = create_organization_request_instance.to_dict()
# create an instance of CreateOrganizationRequest from a dict
create_organization_request_from_dict = CreateOrganizationRequest.from_dict(create_organization_request_dict)

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