Skip to content

Latest commit

 

History

History
22 lines (16 loc) · 1019 Bytes

File metadata and controls

22 lines (16 loc) · 1019 Bytes

Zernio::CommentAutomationAudience

Properties

Name Type Description Notes
follower_status String [optional][default to 'any']
min_follower_count Integer Skip commenters with fewer followers than this. Omit for no size rule. [optional]
when_unknown String What to do when Instagram will not reveal the follow relationship. * `send` (default) - deliver the DM anyway (fails open). * `skip` - stay silent. * `verify` - send `followGate.message` with a confirm button. Tapping it is a message, which grants consent, so the re-check on the tap resolves and the real DM (or `followGate.notFollowingMessage`) follows automatically. [optional][default to 'send']

Example

require 'zernio-sdk'

instance = Zernio::CommentAutomationAudience.new(
  follower_status: null,
  min_follower_count: null,
  when_unknown: null
)