| Name |
Type |
Description |
Notes |
| items |
List[int] |
|
|
| profiles |
List[str] |
|
|
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]