Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 956 Bytes

File metadata and controls

29 lines (20 loc) · 956 Bytes

RedditTrendingSearch

Properties

Name Type Description Notes
query str

Example

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]