docs/CustomProperty.md in launchdarkly_api-5.4.0 vs docs/CustomProperty.md in launchdarkly_api-6.0.0
- old
+ new
@@ -1,9 +1,20 @@
# LaunchDarklyApi::CustomProperty
## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**name** | **String** | The name of the property. |
-**value** | **Array<String>** | Values for this property. | [optional]
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **name** | **String** | | |
+| **value** | **Array<String>** | | |
+
+## Example
+
+```ruby
+require 'launchdarkly_api'
+
+instance = LaunchDarklyApi::CustomProperty.new(
+ name: null,
+ value: null
+)
+```