Skip to content

Latest commit

 

History

History
34 lines (28 loc) · 948 Bytes

File metadata and controls

34 lines (28 loc) · 948 Bytes

Late::WebhookPayloadCommentComment

Properties

Name Type Description Notes
id String Platform comment ID
post_id String Internal post ID
platform_post_id String Platform's post ID
platform String
text String Comment text content
author WebhookPayloadCommentCommentAuthor
created_at Time
is_reply Boolean Whether this is a reply to another comment
parent_comment_id String Parent comment ID if this is a reply

Example

require 'late-sdk'

instance = Late::WebhookPayloadCommentComment.new(
  id: null,
  post_id: null,
  platform_post_id: null,
  platform: null,
  text: null,
  author: null,
  created_at: null,
  is_reply: null,
  parent_comment_id: null
)