| Name |
Type |
Description |
Notes |
| query |
str |
|
|
from unifapi.models.reddit_trending_search import RedditTrendingSearch
# TODO update the JSON string below
json = "{}"
# create an instance of RedditTrendingSearch from a JSON string
reddit_trending_search_instance = RedditTrendingSearch.from_json(json)
# print the JSON string representation of the object
print(RedditTrendingSearch.to_json())
# convert the object into a dict
reddit_trending_search_dict = reddit_trending_search_instance.to_dict()
# create an instance of RedditTrendingSearch from a dict
reddit_trending_search_from_dict = RedditTrendingSearch.from_dict(reddit_trending_search_dict)
[Back to Model list] [Back to API list] [Back to README]