Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 915 Bytes

File metadata and controls

26 lines (20 loc) · 915 Bytes

Zernio::WebhookPayloadCommentPost

Properties

Name Type Description Notes
id String Internal post ID (null for posts not published through Zernio)
platform_post_id String Platform's post ID
content String Post text, from our synced copy — no platform call is made on the comment path, so null when the post was never synced.
image_url String Post thumbnail or first media item URL. Platform CDN URLs expire, fetch promptly.
permalink String Public URL of the post. Null when no URL was ever stored for it, for example a platform draft or a post recovered without one.

Example

require 'zernio-sdk'

instance = Zernio::WebhookPayloadCommentPost.new(
  id: null,
  platform_post_id: null,
  content: null,
  image_url: null,
  permalink: null
)