Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 873 Bytes

File metadata and controls

29 lines (20 loc) · 873 Bytes

CreateTweet

Properties

Name Type Description Notes
result Tweet

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]