XTweetAttachments
| Name |
Type |
Description |
Notes |
| media_keys |
List[str] |
|
|
from unifapi.models.x_tweet_attachments import XTweetAttachments
# TODO update the JSON string below
json = "{}"
# create an instance of XTweetAttachments from a JSON string
x_tweet_attachments_instance = XTweetAttachments.from_json(json)
# print the JSON string representation of the object
print(XTweetAttachments.to_json())
# convert the object into a dict
x_tweet_attachments_dict = x_tweet_attachments_instance.to_dict()
# create an instance of XTweetAttachments from a dict
x_tweet_attachments_from_dict = XTweetAttachments.from_dict(x_tweet_attachments_dict)
[Back to Model list] [Back to API list] [Back to README]