| Name | Type | Description | Notes |
|---|---|---|---|
| attachment_url | str | [optional] [default to 'https://x.com/elonmusk/status/1349129669258448897'] | |
| conversation_control | PostCreateTweetRequestVariablesConversationControl | [optional] | |
| dark_request | bool | [default to False] | |
| disallowed_reply_options | object | [optional] | |
| media | PostCreateTweetRequestVariablesMedia | ||
| reply | PostCreateTweetRequestVariablesReply | [optional] | |
| semantic_annotation_ids | List[object] | ||
| tweet_text | str | [default to 'test'] |
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)