Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

GetUserInfo200ResponseUser

Properties

Name Type Description Notes
id str [optional]
email str [optional]
name str [optional]

Example

from rankvectors.models.get_user_info200_response_user import GetUserInfo200ResponseUser

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

# convert the object into a dict
get_user_info200_response_user_dict = get_user_info200_response_user_instance.to_dict()
# create an instance of GetUserInfo200ResponseUser from a dict
get_user_info200_response_user_from_dict = GetUserInfo200ResponseUser.from_dict(get_user_info200_response_user_dict)

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