Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 958 Bytes

File metadata and controls

30 lines (21 loc) · 958 Bytes

HackerNewsUpdates

Properties

Name Type Description Notes
items List[int]
profiles List[str]

Example

from unifapi.models.hacker_news_updates import HackerNewsUpdates

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

# convert the object into a dict
hacker_news_updates_dict = hacker_news_updates_instance.to_dict()
# create an instance of HackerNewsUpdates from a dict
hacker_news_updates_from_dict = HackerNewsUpdates.from_dict(hacker_news_updates_dict)

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