Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1018 Bytes

File metadata and controls

28 lines (22 loc) · 1018 Bytes

Zernio::WebhookPayloadCommentCommentAuthor

Properties

Name Type Description Notes
id String Author's platform ID
username String [optional]
name String [optional]
picture String [optional]
is_own_account Boolean True when this comment was authored by the connected account itself (Meta re-delivers the account's own replies as comments events). Populated on the Instagram and Facebook realtime webhooks only; absent means not evaluated, never "not the account". [optional]
instagram_profile WebhookPayloadCommentCommentAuthorInstagramProfile [optional]

Example

require 'zernio-sdk'

instance = Zernio::WebhookPayloadCommentCommentAuthor.new(
  id: null,
  username: null,
  name: null,
  picture: null,
  is_own_account: null,
  instagram_profile: null
)