Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 1.04 KB

File metadata and controls

26 lines (20 loc) · 1.04 KB

Zernio::ConversionDestination

Properties

Name Type Description Notes
id String Platform-native identifier. Pass back as `destinationId` on event send and as the path segment on CRUD endpoints.
name String
type String Present when the platform locks the event type/category to the destination (Google conversion actions, LinkedIn conversion rules). Absent for Meta pixels (which accept any event name per request). [optional]
status String For LinkedIn, `inactive` means the rule is soft-deleted (`enabled: false`). [optional]
ad_account_id String Set by adapters whose destinations are scoped to a specific ad account (LinkedIn). Pass back on subsequent CRUD calls to identify the parent ad account. [optional]

Example

require 'zernio-sdk'

instance = Zernio::ConversionDestination.new(
  id: null,
  name: null,
  type: null,
  status: null,
  ad_account_id: null
)