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

Name Type Description Notes
entity_set Entities
id str
media NoteTweetResultMedia [optional]
richtext NoteTweetResultRichText [optional]
text str

Example

from twitter_openapi_python_generated.models.note_tweet_result_data import NoteTweetResultData

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

# convert the object into a dict
note_tweet_result_data_dict = note_tweet_result_data_instance.to_dict()
# create an instance of NoteTweetResultData from a dict
note_tweet_result_data_from_dict = NoteTweetResultData.from_dict(note_tweet_result_data_dict)

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