docs/CustomProperty.md in launchdarkly_api-9.0.1 vs docs/CustomProperty.md in launchdarkly_api-10.0.0
- old
+ new
@@ -2,19 +2,19 @@
## Properties
| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
-| **name** | **String** | | |
-| **value** | **Array<String>** | | |
+| **name** | **String** | The name of the custom property of this type. | |
+| **value** | **Array<String>** | An array of values for the custom property data to associate with this flag. | |
## Example
```ruby
require 'launchdarkly_api'
instance = LaunchDarklyApi::CustomProperty.new(
- name: null,
- value: null
+ name: Jira issues,
+ value: ["is-123","is-456"]
)
```