Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.62 KB

ListOrganizations200ResponseInner.md

File metadata and controls

38 lines (29 loc) · 1.62 KB

ListOrganizations200ResponseInner

Properties

Name Type Description Notes
tenant_id str
id str
name str
description str
custom_data object arbitrary
is_mfa_required bool
branding ListApplicationOrganizations200ResponseInnerBranding
created_at float
users_count float [optional]
featured_users List[ListRoles200ResponseInnerFeaturedUsersInner] [optional]

Example

from py_logto.models.list_organizations200_response_inner import ListOrganizations200ResponseInner

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

# convert the object into a dict
list_organizations200_response_inner_dict = list_organizations200_response_inner_instance.to_dict()
# create an instance of ListOrganizations200ResponseInner from a dict
list_organizations200_response_inner_from_dict = ListOrganizations200ResponseInner.from_dict(list_organizations200_response_inner_dict)

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