| Name |
Type |
Description |
Notes |
| id |
str |
|
|
| text |
str |
|
|
| author_id |
str |
|
[optional] |
| created_at |
str |
|
[optional] |
| raw |
object |
|
[optional] |
from unifapi.models.twitter_article import TwitterArticle
# TODO update the JSON string below
json = "{}"
# create an instance of TwitterArticle from a JSON string
twitter_article_instance = TwitterArticle.from_json(json)
# print the JSON string representation of the object
print(TwitterArticle.to_json())
# convert the object into a dict
twitter_article_dict = twitter_article_instance.to_dict()
# create an instance of TwitterArticle from a dict
twitter_article_from_dict = TwitterArticle.from_dict(twitter_article_dict)
[Back to Model list] [Back to API list] [Back to README]