Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 869 Bytes

File metadata and controls

30 lines (21 loc) · 869 Bytes

TweetView

Properties

Name Type Description Notes
count str [optional]
state str

Example

from twitter_openapi_python_generated.models.tweet_view import TweetView

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

# convert the object into a dict
tweet_view_dict = tweet_view_instance.to_dict()
# create an instance of TweetView from a dict
tweet_view_from_dict = TweetView.from_dict(tweet_view_dict)

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