You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This documentation describes LaunchDarkly's REST API. To access the complete OpenAPI spec directly, use [Get OpenAPI spec](https://launchdarkly.com/docs/api/other/get-openapi-spec).
@@ -483,7 +483,7 @@ Add this dependency to your project's POM:
483
483
<dependency>
484
484
<groupId>com.launchdarkly</groupId>
485
485
<artifactId>api-client</artifactId>
486
-
<version>18.0.0</version>
486
+
<version>18.0.1</version>
487
487
<scope>compile</scope>
488
488
</dependency>
489
489
```
@@ -499,7 +499,7 @@ Add this dependency to your project's build file:
String projectKey ="projectKey_example"; // String | The project key
119
119
String metricKey ="metricKey_example"; // String | The metric key
120
-
String expand ="expand_example"; // String | A comma-separated list of properties that can reveal additional information in the response. Supported fields are `experiments`, `experimentCount`, `metricGroups`, `metricGroupCount`, `eventSources`, `guardedRollouts`, `guardedRolloutCount`, and `lastUsedInEntity`.
120
+
String expand ="expand_example"; // String | A comma-separated list of properties that can reveal additional information in the response. Supported fields are `experiments`, `experimentCount`, `metricGroups`, `metricGroupCount`, `eventSources`, `guardedRollouts`, `guardedRolloutCount`, `lastUsedInExperiment`, and `lastUsedInGuardedRollout`.
121
121
String versionId ="versionId_example"; // String | The specific version ID of the metric
122
122
try {
123
123
MetricRep result = apiInstance.getMetric(projectKey, metricKey, expand, versionId);
|**expand**|**String**| A comma-separated list of properties that can reveal additional information in the response. Supported fields are `experiments`, `experimentCount`, `metricGroups`, `metricGroupCount`, `eventSources`, `guardedRollouts`, `guardedRolloutCount`, and `lastUsedInEntity`. |[optional]|
142
+
|**expand**|**String**| A comma-separated list of properties that can reveal additional information in the response. Supported fields are `experiments`, `experimentCount`, `metricGroups`, `metricGroupCount`, `eventSources`, `guardedRollouts`, `guardedRolloutCount`, `lastUsedInExperiment`, and `lastUsedInGuardedRollout`. |[optional]|
143
143
|**versionId**|**String**| The specific version ID of the metric |[optional]|
0 commit comments