Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.34 KB

ApiInteractionConsentGet200ResponseUser.md

File metadata and controls

34 lines (25 loc) · 1.34 KB

ApiInteractionConsentGet200ResponseUser

Properties

Name Type Description Notes
id str
name str
avatar str
username str
primary_email str
primary_phone str

Example

from py_logto.models.api_interaction_consent_get200_response_user import ApiInteractionConsentGet200ResponseUser

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

# convert the object into a dict
api_interaction_consent_get200_response_user_dict = api_interaction_consent_get200_response_user_instance.to_dict()
# create an instance of ApiInteractionConsentGet200ResponseUser from a dict
api_interaction_consent_get200_response_user_from_dict = ApiInteractionConsentGet200ResponseUser.from_dict(api_interaction_consent_get200_response_user_dict)

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