docs/SubscriptionCreateJobCreateQueryResourceObjectAttributes.md in klaviyo-api-sdk-7.1.0 vs docs/SubscriptionCreateJobCreateQueryResourceObjectAttributes.md in klaviyo-api-sdk-8.0.0
- old
+ new
@@ -4,17 +4,19 @@
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **custom_source** | **String** | A custom method detail or source to store on the consent records. | [optional] |
| **profiles** | [**SubscriptionCreateJobCreateQueryResourceObjectAttributesProfiles**](SubscriptionCreateJobCreateQueryResourceObjectAttributesProfiles.md) | | |
+| **historical_import** | **Boolean** | Whether this subscription is part of a historical import. If true, the consented_at field must be provided for each profile. | [optional][default to false] |
## Example
```ruby
require 'klaviyo-api-sdk'
instance = KlaviyoAPI::SubscriptionCreateJobCreateQueryResourceObjectAttributes.new(
custom_source: Marketing Event,
- profiles: null
+ profiles: null,
+ historical_import: null
)
```