Sha256: 59f60b07911a0385c28cfd56ab4ede69bc66a123ab5d99a5e6193bdf0d9921c0

Contents?: true

Size: 1.16 KB

Versions: 3

Compression:

Stored size: 1.16 KB

Contents

# ElasticEmail::CampaignOptions

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **delivery_optimization** | [**DeliveryOptimizationType**](DeliveryOptimizationType.md) |  | [optional][default to 'None'] |
| **track_opens** | **Boolean** | Should the opens be tracked? If no value has been provided, Account's default setting will be used. | [optional] |
| **track_clicks** | **Boolean** | Should the clicks be tracked? If no value has been provided, Account's default setting will be used. | [optional] |
| **schedule_for** | **Time** | Date when this Campaign is scheduled to be sent on | [optional] |
| **trigger_frequency** | **Float** | How often (in minutes) to send the campaign | [optional] |
| **trigger_count** | **Integer** | How many times send the campaign | [optional] |
| **split_options** | [**SplitOptions**](SplitOptions.md) |  | [optional] |

## Example

```ruby
require 'ElasticEmail'

instance = ElasticEmail::CampaignOptions.new(
  delivery_optimization: null,
  track_opens: true,
  track_clicks: true,
  schedule_for: null,
  trigger_frequency: null,
  trigger_count: null,
  split_options: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ElasticEmail-4.0.26 docs/CampaignOptions.md
ElasticEmail-4.0.25 docs/CampaignOptions.md
ElasticEmail-4.0.24 docs/CampaignOptions.md