| Name | Type | Description | Notes |
|---|---|---|---|
| data | UserProfileFullStatistics | [optional] |
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)