Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.23 KB

File metadata and controls

24 lines (18 loc) · 1.23 KB

Late::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]
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> Sequence of tweets in a thread. First item is the root tweet. [optional]
poll TwitterPlatformDataPoll [optional]

Example

require 'late-sdk'

instance = Late::TwitterPlatformData.new(
  reply_to_tweet_id: null,
  reply_settings: null,
  thread_items: null,
  poll: null
)