Sha256: f33745d0f7df28836ab3d4949d789cd149515100f07ad156b15740540509d781

Contents?: true

Size: 1.59 KB

Versions: 3

Compression:

Stored size: 1.59 KB

Contents

# TalonOne::ApplicationEvent

## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**id** | **Integer** | Internal ID of this entity. | 
**created** | **DateTime** | The time this entity was created. | 
**application_id** | **Integer** | The ID of the application that owns this entity. | 
**profile_id** | **Integer** | The globally unique Talon.One ID of the customer that created this entity. | [optional] 
**session_id** | **Integer** | The globally unique Talon.One ID of the session that contains this event. | [optional] 
**type** | **String** | A string representing the event. Must not be a reserved event name. | 
**attributes** | [**Object**](.md) | Additional JSON serialized data associated with the event. | 
**effects** | [**Array<Effect>**](Effect.md) | An array containing the effects that were applied as a result of this event. | 
**rule_failure_reasons** | [**Array<RuleFailureReason>**](RuleFailureReason.md) | An array containing the rule failure reasons which happened during this event. | [optional] 

## Code Sample

```ruby
require 'TalonOne'

instance = TalonOne::ApplicationEvent.new(id: 6,
                                 created: 2020-06-10T09:05:27.993483Z,
                                 application_id: 322,
                                 profile_id: 138,
                                 session_id: null,
                                 type: null,
                                 attributes: null,
                                 effects: null,
                                 rule_failure_reasons: null)
```


Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
talon_one-3.0.2 docs/ApplicationEvent.md
talon_one-3.0.1 docs/ApplicationEvent.md
talon_one-3.0.0 docs/ApplicationEvent.md