Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.26 KB

File metadata and controls

32 lines (23 loc) · 1.26 KB

RedditFeedHomeGet200Response

Properties

Name Type Description Notes
request_id str UnifAPI request id for support and ledger correlation.
data List[RedditPost]
pagination Pagination
billing Billing

Example

from unifapi.models.reddit_feed_home_get200_response import RedditFeedHomeGet200Response

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

# convert the object into a dict
reddit_feed_home_get200_response_dict = reddit_feed_home_get200_response_instance.to_dict()
# create an instance of RedditFeedHomeGet200Response from a dict
reddit_feed_home_get200_response_from_dict = RedditFeedHomeGet200Response.from_dict(reddit_feed_home_get200_response_dict)

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