Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.3 KB

File metadata and controls

33 lines (24 loc) · 1.3 KB

GetUserInfo200Response

Properties

Name Type Description Notes
success bool [optional]
user GetUserInfo200ResponseUser [optional]
links GetUserInfo200ResponseLinks [optional]
projects_count int [optional]
recent_usage float Recent usage (pages indexed in last 30 days) [optional]

Example

from rankvectors.models.get_user_info200_response import GetUserInfo200Response

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

# convert the object into a dict
get_user_info200_response_dict = get_user_info200_response_instance.to_dict()
# create an instance of GetUserInfo200Response from a dict
get_user_info200_response_from_dict = GetUserInfo200Response.from_dict(get_user_info200_response_dict)

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