Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.25 KB

File metadata and controls

33 lines (24 loc) · 1.25 KB

GrokTranslatedCommunityNote

Properties

Name Type Description Notes
destination_language str
rich_text_entities List[GrokEntity] [optional]
source_language str
translation str
translation_available bool

Example

from twitter_openapi_python_generated.models.grok_translated_community_note import GrokTranslatedCommunityNote

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

# convert the object into a dict
grok_translated_community_note_dict = grok_translated_community_note_instance.to_dict()
# create an instance of GrokTranslatedCommunityNote from a dict
grok_translated_community_note_from_dict = GrokTranslatedCommunityNote.from_dict(grok_translated_community_note_dict)

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