| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| name |
str |
|
|
| prefixed_name |
str |
|
|
from unifapi.models.reddit_post_subreddit import RedditPostSubreddit
# TODO update the JSON string below
json = "{}"
# create an instance of RedditPostSubreddit from a JSON string
reddit_post_subreddit_instance = RedditPostSubreddit.from_json(json)
# print the JSON string representation of the object
print(RedditPostSubreddit.to_json())
# convert the object into a dict
reddit_post_subreddit_dict = reddit_post_subreddit_instance.to_dict()
# create an instance of RedditPostSubreddit from a dict
reddit_post_subreddit_from_dict = RedditPostSubreddit.from_dict(reddit_post_subreddit_dict)
[Back to Model list] [Back to API list] [Back to README]