Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.78 KB

UpdateUser200Response.md

File metadata and controls

44 lines (35 loc) · 1.78 KB

UpdateUser200Response

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] [optional]

Example

from py_logto.models.update_user200_response import UpdateUser200Response

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

# convert the object into a dict
update_user200_response_dict = update_user200_response_instance.to_dict()
# create an instance of UpdateUser200Response from a dict
update_user200_response_from_dict = UpdateUser200Response.from_dict(update_user200_response_dict)

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