Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.05 KB

File metadata and controls

33 lines (24 loc) · 1.05 KB

HackerNewsUser

Properties

Name Type Description Notes
id str
created int Unix epoch seconds [optional]
karma int [optional]
about str HTML profile text. [optional]
submitted List[int] [optional]

Example

from unifapi.models.hacker_news_user import HackerNewsUser

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

# convert the object into a dict
hacker_news_user_dict = hacker_news_user_instance.to_dict()
# create an instance of HackerNewsUser from a dict
hacker_news_user_from_dict = HackerNewsUser.from_dict(hacker_news_user_dict)

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