Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 3.35 KB

File metadata and controls

36 lines (30 loc) · 3.35 KB

Zernio::TwitterPlatformData

Properties

Name Type Description Notes
reply_to_tweet_id String ID of an existing tweet to reply to. The published tweet will appear as a reply in that tweet's thread. For threads, only the first tweet replies to the target; subsequent tweets chain normally. [optional]
quote_tweet_id String ID (or full status URL) of an existing tweet to quote-repost. The published tweet becomes a quote tweet of the target. Mutually exclusive with media and poll. X only permits quoting your own posts or posts you are mentioned in / part of the conversation thread of; quoting an arbitrary other account's post is rejected by X. Billed at the standard create rate ($0.015), unlike pasting a tweet URL into the text which is billed at the URL rate ($0.20). For threads, applies to the first tweet only. [optional]
reply_settings String Controls who can reply to the tweet. "following" allows only people you follow, "mentionedUsers" allows only mentioned users, "subscribers" allows only subscribers, "verified" allows only verified users. Omit for default (everyone can reply). For threads, applies to the first tweet only. Cannot be combined with replyToTweetId. [optional]
thread_items Array<TwitterPlatformDataThreadItemsInner> Complete sequence of tweets in a thread. The first item becomes the root tweet, subsequent items are chained as replies. When threadItems is provided, the top-level content field is used only for display and search purposes, it is NOT published. You must include your first tweet as threadItems[0]. [optional]
poll TwitterPlatformDataPoll [optional]
long_video Boolean Enable long video uploads (over 140 seconds) using amplify_video media category. Requires the connected X account to have an active X Premium subscription. When true, videos are uploaded with the amplify_video category which supports longer durations (up to 10 minutes via API). When false or omitted, the standard tweet_video category is used (140 second limit). Note that not all Premium accounts have API long-video access, as X may require separate allowlisting. [optional][default to false]
geo_restriction GeoRestriction [optional]
paid_partnership Boolean When true, the post is labeled by X as a paid partnership / paid promotion. For threads, applies to the root tweet only. Field availability may depend on your X API access tier. [optional][default to false]
made_with_ai Boolean When true, the post is labeled by X as containing AI-generated media. Per X, this label is for AI-generated media, not AI-written text. For threads, applies to the root tweet only. [optional][default to false]
sensitive_media TwitterPlatformDataSensitiveMedia [optional]

Example

require 'zernio-sdk'

instance = Zernio::TwitterPlatformData.new(
  reply_to_tweet_id: null,
  quote_tweet_id: null,
  reply_settings: null,
  thread_items: null,
  poll: null,
  long_video: null,
  geo_restriction: null,
  paid_partnership: null,
  made_with_ai: null,
  sensitive_media: null
)