Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.21 KB

File metadata and controls

31 lines (22 loc) · 1.21 KB

PostCreateTweetRequest

Properties

Name Type Description Notes
features PostCreateTweetRequestFeatures
query_id str [default to 'IID9x6WsdMnTlXnzXGq8ng']
variables PostCreateTweetRequestVariables

Example

from twitter_openapi_python_generated.models.post_create_tweet_request import PostCreateTweetRequest

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

# convert the object into a dict
post_create_tweet_request_dict = post_create_tweet_request_instance.to_dict()
# create an instance of PostCreateTweetRequest from a dict
post_create_tweet_request_from_dict = PostCreateTweetRequest.from_dict(post_create_tweet_request_dict)

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