Skip to content

Latest commit

History

History
33 lines (24 loc) · 1.19 KB

File metadata and controls

33 lines (24 loc) · 1.19 KB

NoteTweetResultData

Properties

NameTypeDescriptionNotes
entity_setEntities
idstr
mediaNoteTweetResultMedia[optional]
richtextNoteTweetResultRichText[optional]
textstr

Example

fromtwitter_openapi_python_generated.models.note_tweet_result_dataimportNoteTweetResultData# TODO update the JSON string belowjson="{}"# create an instance of NoteTweetResultData from a JSON stringnote_tweet_result_data_instance=NoteTweetResultData.from_json(json)
# print the JSON string representation of the objectprint(NoteTweetResultData.to_json())
# convert the object into a dictnote_tweet_result_data_dict=note_tweet_result_data_instance.to_dict()
# create an instance of NoteTweetResultData from a dictnote_tweet_result_data_from_dict=NoteTweetResultData.from_dict(note_tweet_result_data_dict)

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