docs/ClientSideAvailability.md in launchdarkly_api-5.4.0 vs docs/ClientSideAvailability.md in launchdarkly_api-6.0.0

- old
+ new

@@ -1,9 +1,20 @@ # LaunchDarklyApi::ClientSideAvailability ## Properties -Name | Type | Description | Notes ------------- | ------------- | ------------- | ------------- -**using_environment_id** | **BOOLEAN** | When set to true, this flag will be available to SDKs using the client-side id. | [optional] -**using_mobile_key** | **BOOLEAN** | When set to true, this flag will be available to SDKS using a mobile key. | [optional] +| Name | Type | Description | Notes | +| ---- | ---- | ----------- | ----- | +| **using_mobile_key** | **Boolean** | | [optional] | +| **using_environment_id** | **Boolean** | | [optional] | + +## Example + +```ruby +require 'launchdarkly_api' + +instance = LaunchDarklyApi::ClientSideAvailability.new( + using_mobile_key: null, + using_environment_id: null +) +```