Skip to content

Latest commit

 

History

History
46 lines (40 loc) · 2.04 KB

File metadata and controls

46 lines (40 loc) · 2.04 KB

Zernio::ListInboxComments200ResponseDataInner

Properties

Name Type Description Notes
id String [optional]
platform String [optional]
account_id String [optional]
account_username String [optional]
content String The post text/caption. On ad rows (isAd: true) this is the AD NAME, not the underlying post's caption — the creative text isn't exposed here. [optional]
picture String Post media thumbnail. On ad rows this is the ad creative thumbnail. [optional]
permalink String Public URL of the post. On ad rows: the Facebook dark-post URL (facebook placement) or the IG media permalink (instagram placement); may be null when unknown. [optional]
created_time Time [optional]
comment_count Integer [optional]
like_count Integer Not fetched for ad rows (always 0 there). [optional]
cid String Bluesky content identifier [optional]
subreddit String Reddit subreddit name [optional]
is_ad Boolean True when this row is an ad (boosted/dark post). `platform` is then the placement (facebook = the Page dark post / instagram = the IG media), `id` is `{adId}:{placement}`, and the thread is at GET /v1/ads/{adId}/comments?placement={placement}. [optional]
ad_id String Internal Zernio ad id — only on ad rows. [optional]
placement String Which side of the ad this row's comments are on — only on ad rows. [optional]

Example

require 'zernio-sdk'

instance = Zernio::ListInboxComments200ResponseDataInner.new(
  id: null,
  platform: null,
  account_id: null,
  account_username: null,
  content: null,
  picture: null,
  permalink: null,
  created_time: null,
  comment_count: null,
  like_count: null,
  cid: null,
  subreddit: null,
  is_ad: null,
  ad_id: null,
  placement: null
)