Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2 KB

ListOrganizationUsers200ResponseInner.md

File metadata and controls

43 lines (34 loc) · 2 KB

ListOrganizationUsers200ResponseInner

Properties

Name Type Description Notes
id str
username str
primary_email str
primary_phone str
name str
avatar str
custom_data object arbitrary
identities Dict[str, GetJwtCustomizer200ResponseOneOfContextSampleUserIdentitiesValue]
last_sign_in_at float
created_at float
updated_at float
profile GetJwtCustomizer200ResponseOneOfContextSampleUserProfile
application_id str
is_suspended bool
organization_roles List[ListApplicationOrganizations200ResponseInnerOrganizationRolesInner]

Example

from py_logto.models.list_organization_users200_response_inner import ListOrganizationUsers200ResponseInner

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

# convert the object into a dict
list_organization_users200_response_inner_dict = list_organization_users200_response_inner_instance.to_dict()
# create an instance of ListOrganizationUsers200ResponseInner from a dict
list_organization_users200_response_inner_from_dict = ListOrganizationUsers200ResponseInner.from_dict(list_organization_users200_response_inner_dict)

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