PostCreateTweetRequestFeatures
May 20, 2026 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| articles_preview_enabled | bool | [default to True] | |
| c9s_tweet_anatomy_moderator_badge_enabled | bool | [default to True] | |
| communities_web_enable_tweet_community_results_fetch | bool | [default to True] | |
| content_disclosure_ai_generated_indicator_enabled | bool | [default to True] | |
| content_disclosure_indicator_enabled | bool | [default to True] | |
| freedom_of_speech_not_reach_fetch_enabled | bool | [default to True] | |
| graphql_is_translatable_rweb_tweet_is_translatable_enabled | bool | [default to True] | |
| longform_notetweets_consumption_enabled | bool | [default to True] | |
| longform_notetweets_inline_media_enabled | bool | [default to False] | |
| longform_notetweets_rich_text_read_enabled | bool | [default to True] | |
| post_ctas_fetch_enabled | bool | [default to True] | |
| premium_content_api_read_enabled | bool | [default to False] | |
| profile_label_improvements_pcf_label_in_post_enabled | bool | [default to True] | |
| responsive_web_edit_tweet_api_enabled | bool | [default to True] | |
| responsive_web_graphql_skip_user_profile_image_extensions_enabled | bool | [default to False] | |
| responsive_web_graphql_timeline_navigation_enabled | bool | [default to True] | |
| responsive_web_grok_analysis_button_from_backend | bool | [default to True] | |
| responsive_web_grok_analyze_button_fetch_trends_enabled | bool | [default to False] | |
| responsive_web_grok_analyze_post_followups_enabled | bool | [default to True] | |
| responsive_web_grok_annotations_enabled | bool | [default to True] | |
| responsive_web_grok_community_note_auto_translation_is_enabled | bool | [default to True] | |
| responsive_web_grok_image_annotation_enabled | bool | [default to True] | |
| responsive_web_grok_imagine_annotation_enabled | bool | [default to True] | |
| responsive_web_grok_share_attachment_enabled | bool | [default to True] | |
| responsive_web_grok_show_grok_translated_post | bool | [default to True] | |
| responsive_web_jetfuel_frame | bool | [default to True] | |
| responsive_web_profile_redirect_enabled | bool | [default to False] | |
| responsive_web_twitter_article_tweet_consumption_enabled | bool | [default to True] | |
| rweb_cashtags_composer_attachment_enabled | bool | [default to True] | |
| rweb_cashtags_enabled | bool | [default to True] | |
| rweb_conversational_replies_downvote_enabled | bool | [default to False] | |
| rweb_tipjar_consumption_enabled | bool | [default to False] | |
| standardized_nudges_misinfo | bool | [default to True] | |
| tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabled | bool | [default to True] | |
| verified_phone_label_enabled | bool | [default to False] | |
| view_counts_everywhere_api_enabled | bool | [default to True] |
Example
from twitter_openapi_python_generated.models.post_create_tweet_request_features import PostCreateTweetRequestFeatures
# TODO update the JSON string below
json = "{}"
# create an instance of PostCreateTweetRequestFeatures from a JSON string
post_create_tweet_request_features_instance = PostCreateTweetRequestFeatures.from_json(json)
# print the JSON string representation of the object
print(PostCreateTweetRequestFeatures.to_json())
# convert the object into a dict
post_create_tweet_request_features_dict = post_create_tweet_request_features_instance.to_dict()
# create an instance of PostCreateTweetRequestFeatures from a dict
post_create_tweet_request_features_from_dict = PostCreateTweetRequestFeatures.from_dict(post_create_tweet_request_features_dict)