docs/SubscriptionChannels.md in klaviyo-api-sdk-4.2.0 vs docs/SubscriptionChannels.md in klaviyo-api-sdk-5.0.0
- old
+ new
@@ -2,19 +2,19 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
-| **email** | **Array<String>** | The communication types to subscribe to on the \"EMAIL\" Channel. Currently supports \"MARKETING\". | [optional] |
-| **sms** | **Array<String>** | The communication types to subscribe to on the \"SMS\" Channel. Currently supports \"MARKETING\". | [optional] |
+| **email** | [**EmailSubscriptionParameters**](EmailSubscriptionParameters.md) | | [optional] |
+| **sms** | [**SMSSubscriptionParameters**](SMSSubscriptionParameters.md) | | [optional] |
## Example
```ruby
require 'klaviyo-api-sdk'
instance = KlaviyoAPI::SubscriptionChannels.new(
- email: ["MARKETING"],
- sms: ["MARKETING"]
+ email: null,
+ sms: null
)
```