docs/SendStrategySubObject.md in klaviyo-api-sdk-1.1.0 vs docs/SendStrategySubObject.md in klaviyo-api-sdk-1.2.0
- old
+ new
@@ -2,21 +2,23 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
-| **method** | **String** | Describes the shape of the options object. Allowed values: ['static', 'throttled', 'immediate'] | |
+| **method** | **String** | Describes the shape of the options object. Allowed values: ['static', 'throttled', 'immediate', 'smart_send_time'] | |
| **options_static** | [**StaticScheduleOptions**](StaticScheduleOptions.md) | | [optional] |
| **options_throttled** | [**ThrottledScheduleOptions**](ThrottledScheduleOptions.md) | | [optional] |
+| **options_sto** | [**STOScheduleOptions**](STOScheduleOptions.md) | | [optional] |
## Example
```ruby
require 'klaviyo-api-sdk'
instance = KlaviyoAPI::SendStrategySubObject.new(
method: static,
options_static: null,
- options_throttled: null
+ options_throttled: null,
+ options_sto: null
)
```