PostCreateTweetRequestFeatures

May 20, 2026 ยท View on GitHub

Properties

NameTypeDescriptionNotes
articles_preview_enabledbool[default to True]
c9s_tweet_anatomy_moderator_badge_enabledbool[default to True]
communities_web_enable_tweet_community_results_fetchbool[default to True]
content_disclosure_ai_generated_indicator_enabledbool[default to True]
content_disclosure_indicator_enabledbool[default to True]
freedom_of_speech_not_reach_fetch_enabledbool[default to True]
graphql_is_translatable_rweb_tweet_is_translatable_enabledbool[default to True]
longform_notetweets_consumption_enabledbool[default to True]
longform_notetweets_inline_media_enabledbool[default to False]
longform_notetweets_rich_text_read_enabledbool[default to True]
post_ctas_fetch_enabledbool[default to True]
premium_content_api_read_enabledbool[default to False]
profile_label_improvements_pcf_label_in_post_enabledbool[default to True]
responsive_web_edit_tweet_api_enabledbool[default to True]
responsive_web_graphql_skip_user_profile_image_extensions_enabledbool[default to False]
responsive_web_graphql_timeline_navigation_enabledbool[default to True]
responsive_web_grok_analysis_button_from_backendbool[default to True]
responsive_web_grok_analyze_button_fetch_trends_enabledbool[default to False]
responsive_web_grok_analyze_post_followups_enabledbool[default to True]
responsive_web_grok_annotations_enabledbool[default to True]
responsive_web_grok_community_note_auto_translation_is_enabledbool[default to True]
responsive_web_grok_image_annotation_enabledbool[default to True]
responsive_web_grok_imagine_annotation_enabledbool[default to True]
responsive_web_grok_share_attachment_enabledbool[default to True]
responsive_web_grok_show_grok_translated_postbool[default to True]
responsive_web_jetfuel_framebool[default to True]
responsive_web_profile_redirect_enabledbool[default to False]
responsive_web_twitter_article_tweet_consumption_enabledbool[default to True]
rweb_cashtags_composer_attachment_enabledbool[default to True]
rweb_cashtags_enabledbool[default to True]
rweb_conversational_replies_downvote_enabledbool[default to False]
rweb_tipjar_consumption_enabledbool[default to False]
standardized_nudges_misinfobool[default to True]
tweet_with_visibility_results_prefer_gql_limited_actions_policy_enabledbool[default to True]
verified_phone_label_enabledbool[default to False]
view_counts_everywhere_api_enabledbool[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)

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