Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 2.11 KB

File metadata and controls

42 lines (33 loc) · 2.11 KB

GetTopReviews200ResponseDataAllOfDataInner

Properties

Name Type Description Notes
user UserMeta [optional]
anime AnimeMeta [optional]
mal_id int MyAnimeList ID [optional]
url str MyAnimeList review URL [optional]
type str Entry type [optional]
reactions MangaReviewReactions [optional]
var_date str Review created date ISO8601 [optional]
review str Review content [optional]
score int Number of user votes on the Review [optional]
tags List[str] Review tags [optional]
is_spoiler bool The review contains spoiler [optional]
is_preliminary bool The review was made before the entry was completed [optional]
episodes_watched int Number of episodes watched [optional]
manga MangaMeta [optional]

Example

from jikan_openapi.models.get_top_reviews200_response_data_all_of_data_inner import GetTopReviews200ResponseDataAllOfDataInner

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

# convert the object into a dict
get_top_reviews200_response_data_all_of_data_inner_dict = get_top_reviews200_response_data_all_of_data_inner_instance.to_dict()
# create an instance of GetTopReviews200ResponseDataAllOfDataInner from a dict
get_top_reviews200_response_data_all_of_data_inner_form_dict = get_top_reviews200_response_data_all_of_data_inner.from_dict(get_top_reviews200_response_data_all_of_data_inner_dict)

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