CreateTweet

June 7, 2024 ยท View on GitHub

Properties

NameTypeDescriptionNotes
resultTweet

Example

from twitter_openapi_python_generated.models.create_tweet import CreateTweet

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

# convert the object into a dict
create_tweet_dict = create_tweet_instance.to_dict()
# create an instance of CreateTweet from a dict
create_tweet_from_dict = CreateTweet.from_dict(create_tweet_dict)

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