Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

NoteTweetResultRichText

Properties

Name Type Description Notes
richtext_tags List[NoteTweetResultRichTextTag]

Example

from twitter_openapi_python_generated.models.note_tweet_result_rich_text import NoteTweetResultRichText

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

# convert the object into a dict
note_tweet_result_rich_text_dict = note_tweet_result_rich_text_instance.to_dict()
# create an instance of NoteTweetResultRichText from a dict
note_tweet_result_rich_text_from_dict = NoteTweetResultRichText.from_dict(note_tweet_result_rich_text_dict)

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