| 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] |
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)