Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.93 KB

GetProfile200Response.md

File metadata and controls

44 lines (35 loc) · 1.93 KB

GetProfile200Response

Properties

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

Example

from py_logto.models.get_profile200_response import GetProfile200Response

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

# convert the object into a dict
get_profile200_response_dict = get_profile200_response_instance.to_dict()
# create an instance of GetProfile200Response from a dict
get_profile200_response_from_dict = GetProfile200Response.from_dict(get_profile200_response_dict)

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