| 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] |
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]