Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 2 KB

Audience.md

File metadata and controls

35 lines (28 loc) · 2 KB

TalonOne::Audience

Properties

Name Type Description Notes
account_id Integer The ID of the account that owns this entity.
id Integer Internal ID of this entity.
created DateTime The time this entity was created.
name String The human-friendly display name for this audience.
sandbox Boolean Indicates if this is a live or sandbox Application. [optional]
description String A description of the audience. [optional]
integration String The Talon.One-supported 3rd-party platform that this audience was created in. For example, `mParticle`, `Segment`, `Selligent`, `Braze`, or `Iterable`. Note: If you do not integrate with any of these platforms, do not use this property. [optional]
integration_id String The ID of this audience in the third-party integration. Note: To create an audience that doesn't come from a 3rd party platform, do not use this property. [optional]
created_in3rd_party Boolean Determines if this audience is a 3rd party audience or not. [optional]
last_update DateTime The last time that the audience memberships changed. [optional]

Code Sample

require 'TalonOne'

instance = TalonOne::Audience.new(account_id: 3886,
                                 id: 6,
                                 created: 2020-06-10T09:05:27.993483Z,
                                 name: Travel audience,
                                 sandbox: true,
                                 description: Travel audience 18-27,
                                 integration: mparticle,
                                 integration_id: 382370BKDB946,
                                 created_in3rd_party: false,
                                 last_update: 2022-04-26T11:02:38Z)