Sha256: 537932bb0b2258036c3bdb72a3a51bb0712a8472d188d59b5772802a94860bad
Contents?: true
Size: 1.69 KB
Versions: 6
Compression:
Stored size: 1.69 KB
Contents
# TalonOne::Event ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **Integer** | Unique ID for this entity. | **created** | **DateTime** | The exact moment this entity was created. | **application_id** | **Integer** | The ID of the application that owns this entity. | **profile_id** | **String** | ID of the customers profile as used within this Talon.One account. May be omitted or set to the empty string if the customer does not yet have a known profile ID. | [optional] **type** | **String** | A string representing the event. Must not be a reserved event name. | **attributes** | [**Object**](.md) | Arbitrary additional JSON data associated with the event. | **session_id** | **String** | The ID of the session that this event occurred in. | [optional] **effects** | **Array<Object>** | An array of \"effects\" that must be applied in response to this event. Example effects include `addItemToCart` or `setDiscount`. | **ledger_entries** | [**Array<LedgerEntry>**](LedgerEntry.md) | Ledger entries for the event. | **meta** | [**Meta**](Meta.md) | | [optional] ## Code Sample ```ruby require 'TalonOne' instance = TalonOne::Event.new(id: null, created: null, application_id: null, profile_id: null, type: null, attributes: null, session_id: null, effects: null, ledger_entries: null, meta: null) ```
Version data entries
6 entries across 6 versions & 1 rubygems
Version | Path |
---|---|
talon_one-2.4.0 | docs/Event.md |
talon_one-2.3.0 | docs/Event.md |
talon_one-2.2.0 | docs/Event.md |
talon_one-2.1.1 | docs/Event.md |
talon_one-2.1.0 | docs/Event.md |
talon_one-2.0.0 | docs/Event.md |