Skip to content

Latest commit

History

History
30 lines (21 loc) · 925 Bytes

File metadata and controls

30 lines (21 loc) · 925 Bytes

NoteTweet

Properties

NameTypeDescriptionNotes
is_expandablebool[optional]
note_tweet_resultsNoteTweetResult

Example

fromtwitter_openapi_python_generated.models.note_tweetimportNoteTweet# TODO update the JSON string belowjson="{}"# create an instance of NoteTweet from a JSON stringnote_tweet_instance=NoteTweet.from_json(json)
# print the JSON string representation of the objectprint(NoteTweet.to_json())
# convert the object into a dictnote_tweet_dict=note_tweet_instance.to_dict()
# create an instance of NoteTweet from a dictnote_tweet_from_dict=NoteTweet.from_dict(note_tweet_dict)

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