Skip to content

Latest commit

History

History
36 lines (27 loc) · 1.76 KB

File metadata and controls

36 lines (27 loc) · 1.76 KB

PostCreateTweetRequestVariables

Properties

NameTypeDescriptionNotes
attachment_urlstr[optional] [default to 'https://x.com/elonmusk/status/1349129669258448897']
conversation_controlPostCreateTweetRequestVariablesConversationControl[optional]
dark_requestbool[default to False]
disallowed_reply_optionsobject[optional]
mediaPostCreateTweetRequestVariablesMedia
replyPostCreateTweetRequestVariablesReply[optional]
semantic_annotation_idsList[object]
tweet_textstr[default to 'test']

Example

fromtwitter_openapi_python_generated.models.post_create_tweet_request_variablesimportPostCreateTweetRequestVariables# TODO update the JSON string belowjson="{}"# create an instance of PostCreateTweetRequestVariables from a JSON stringpost_create_tweet_request_variables_instance=PostCreateTweetRequestVariables.from_json(json)
# print the JSON string representation of the objectprint(PostCreateTweetRequestVariables.to_json())
# convert the object into a dictpost_create_tweet_request_variables_dict=post_create_tweet_request_variables_instance.to_dict()
# create an instance of PostCreateTweetRequestVariables from a dictpost_create_tweet_request_variables_from_dict=PostCreateTweetRequestVariables.from_dict(post_create_tweet_request_variables_dict)

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