Skip to content

Files

Latest commit

625539b · Mar 12, 2024

History

History
24 lines (18 loc) · 929 Bytes

DependentMetricGroupRep.md

File metadata and controls

24 lines (18 loc) · 929 Bytes

LaunchDarklyApi::DependentMetricGroupRep

Properties

Name Type Description Notes
key String A unique key to reference the metric group
name String A human-friendly name for the metric group
kind String The type of the metric group
_links Hash<String, Link> The location and content type of related resources

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::DependentMetricGroupRep.new(
  key: metric-group-key-123abc,
  name: My metric group,
  kind: funnel,
  _links: {&quot;parent&quot;:{&quot;href&quot;:&quot;/api/v2/projects/my-project&quot;,&quot;type&quot;:&quot;application/json&quot;},&quot;self&quot;:{&quot;href&quot;:&quot;/api/v2/projects/my-project/metric-groups/my-metric-group&quot;,&quot;type&quot;:&quot;application/json&quot;}}
)