Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.13 KB

File metadata and controls

31 lines (22 loc) · 1.13 KB

GetUserInfo200ResponseLinks

Properties

Name Type Description Notes
total float [optional]
used float [optional]
remaining float [optional]

Example

from rankvectors.models.get_user_info200_response_links import GetUserInfo200ResponseLinks

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

# convert the object into a dict
get_user_info200_response_links_dict = get_user_info200_response_links_instance.to_dict()
# create an instance of GetUserInfo200ResponseLinks from a dict
get_user_info200_response_links_from_dict = GetUserInfo200ResponseLinks.from_dict(get_user_info200_response_links_dict)

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