Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.18 KB

File metadata and controls

28 lines (22 loc) · 1.18 KB

Zernio::FacebookPlatformData

Properties

Name Type Description Notes
content_type String Set to 'story' for Page Stories (24h ephemeral) or 'reel' for Reels (short vertical video). Defaults to feed post if omitted. [optional]
title String Reel title (only for contentType=reel). Separate from the caption/content field. [optional]
first_comment String Optional first comment to post immediately after publishing (feed posts and reels, not stories). Skipped when facebookSettings.draft is true. [optional]
page_id String Target Facebook Page ID for multi-page posting. If omitted, uses the default page. Use GET /v1/accounts/{id}/facebook-page to list pages. [optional]
geo_restriction GeoRestriction [optional]
facebook_settings FacebookSettings [optional]

Example

require 'zernio-sdk'

instance = Zernio::FacebookPlatformData.new(
  content_type: null,
  title: null,
  first_comment: null,
  page_id: null,
  geo_restriction: null,
  facebook_settings: null
)