Skip to content

Latest commit

 

History

History
57 lines (48 loc) · 3.41 KB

File metadata and controls

57 lines (48 loc) · 3.41 KB

PostCreateTweetRequestFeatures

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]
creator_subscriptions_quote_tweet_preview_enabled bool [default to False]
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 True]
longform_notetweets_rich_text_read_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_enhance_cards_enabled bool [default to False]
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 False]
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_image_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 False]
responsive_web_jetfuel_frame bool [default to False]
responsive_web_twitter_article_tweet_consumption_enabled bool [default to True]
rweb_tipjar_consumption_enabled bool [default to True]
standardized_nudges_misinfo bool [default to True]
tweet_awards_web_tipping_enabled bool [default to False]
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)

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