Skip to content

Latest commit

 

History

History
37 lines (30 loc) · 1.8 KB

Giveaway.md

File metadata and controls

37 lines (30 loc) · 1.8 KB

TalonOne::Giveaway

Properties

Name Type Description Notes
id Integer Internal ID of this entity.
created DateTime The time this entity was created.
code String The code value of this giveaway.
pool_id Integer The ID of the pool to return giveaway codes from.
start_date DateTime Timestamp at which point the giveaway becomes valid. [optional]
end_date DateTime Timestamp at which point the giveaway becomes invalid. [optional]
attributes Object Arbitrary properties associated with this giveaway. [optional]
used Boolean Indicates whether this giveaway code was given before. [optional]
import_id Integer The ID of the Import which created this giveaway. [optional]
profile_integration_id String The third-party integration ID of the customer profile that was awarded the giveaway, if the giveaway was awarded. [optional]
profile_id Integer The internal ID of the customer profile that was awarded the giveaway, if the giveaway was awarded and an internal ID exists. [optional]

Code Sample

require 'TalonOne'

instance = TalonOne::Giveaway.new(id: 6,
                                 created: 2020-06-10T09:05:27.993483Z,
                                 code: GIVEAWAY1,
                                 pool_id: 1,
                                 start_date: null,
                                 end_date: null,
                                 attributes: null,
                                 used: true,
                                 import_id: 4,
                                 profile_integration_id: R195412,
                                 profile_id: 1)