Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 1.67 KB

GiveawaysPool.md

File metadata and controls

35 lines (28 loc) · 1.67 KB

TalonOne::GiveawaysPool

Properties

Name Type Description Notes
id Integer Internal ID of this entity.
created DateTime The time this entity was created.
account_id Integer The ID of the account that owns this entity.
name String The name of this giveaways pool.
description String The description of this giveaways pool. [optional]
subscribed_applications_ids Array<Integer> A list of the IDs of the applications that this giveaways pool is enabled for. [optional]
sandbox Boolean Indicates if this program is a live or sandbox program. Programs of a given type can only be connected to Applications of the same type.
modified DateTime Timestamp of the most recent update to the giveaways pool. [optional]
created_by Integer ID of the user who created this giveaways pool.
modified_by Integer ID of the user who last updated this giveaways pool if available. [optional]

Code Sample

require 'TalonOne'

instance = TalonOne::GiveawaysPool.new(id: 6,
                                 created: 2020-06-10T09:05:27.993483Z,
                                 account_id: 3886,
                                 name: My giveaway pool,
                                 description: Generic pool,
                                 subscribed_applications_ids: [2, 4],
                                 sandbox: true,
                                 modified: null,
                                 created_by: null,
                                 modified_by: null)