Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1013 Bytes

File metadata and controls

32 lines (23 loc) · 1013 Bytes

TwitterTranslation

Properties

Name Type Description Notes
id str
language str
text str
raw object [optional]

Example

from unifapi.models.twitter_translation import TwitterTranslation

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

# convert the object into a dict
twitter_translation_dict = twitter_translation_instance.to_dict()
# create an instance of TwitterTranslation from a dict
twitter_translation_from_dict = TwitterTranslation.from_dict(twitter_translation_dict)

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