docs/Target.md in launchdarkly_api-11.0.0 vs docs/Target.md in launchdarkly_api-12.0.0
- old
+ new
@@ -2,19 +2,21 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
-| **values** | **Array<String>** | | |
-| **variation** | **Integer** | | |
+| **values** | **Array<String>** | A list of the keys for targets that will receive this variation because of individual targeting | |
+| **variation** | **Integer** | The index, from the array of variations for this flag, of the variation to serve this list of targets | |
+| **context_kind** | **String** | | [optional] |
## Example
```ruby
require 'launchdarkly_api'
instance = LaunchDarklyApi::Target.new(
values: null,
- variation: null
+ variation: null,
+ context_kind: null
)
```