Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 943 Bytes

File metadata and controls

29 lines (20 loc) · 943 Bytes

UserStatistics

Properties

Name Type Description Notes
data UserProfileFullStatistics [optional]

Example

from jikan_openapi.models.user_statistics import UserStatistics

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

# convert the object into a dict
user_statistics_dict = user_statistics_instance.to_dict()
# create an instance of UserStatistics from a dict
user_statistics_form_dict = user_statistics.from_dict(user_statistics_dict)

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