Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.89 KB

GetUser200Response.md

File metadata and controls

44 lines (35 loc) · 1.89 KB

GetUser200Response

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
has_password bool [optional]
sso_identities List[GetUser200ResponseSsoIdentitiesInner] List of SSO identities associated with the user. Only available when the `includeSsoIdentities` query parameter is provided with a truthy value. [optional]

Example

from py_logto.models.get_user200_response import GetUser200Response

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

# convert the object into a dict
get_user200_response_dict = get_user200_response_instance.to_dict()
# create an instance of GetUser200Response from a dict
get_user200_response_from_dict = GetUser200Response.from_dict(get_user200_response_dict)

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