docs/Destinations.md in launchdarkly_api-5.4.0 vs docs/Destinations.md in launchdarkly_api-6.0.0
- old
+ new
@@ -1,9 +1,20 @@
# LaunchDarklyApi::Destinations
## Properties
-Name | Type | Description | Notes
------------- | ------------- | ------------- | -------------
-**_links** | [**Links**](Links.md) | | [optional]
-**items** | [**Array<Destination>**](Destination.md) | | [optional]
+| Name | Type | Description | Notes |
+| ---- | ---- | ----------- | ----- |
+| **_links** | [**Hash<String, Link>**](Link.md) | | [optional] |
+| **items** | [**Array<Destination>**](Destination.md) | | [optional] |
+
+## Example
+
+```ruby
+require 'launchdarkly_api'
+
+instance = LaunchDarklyApi::Destinations.new(
+ _links: {"self":{"href":"/api/v2/destinations","type":"application/json"}},
+ items: null
+)
+```