Skip to content

Files

Latest commit

847ceb3 · Feb 28, 2023

History

History
26 lines (20 loc) · 1.62 KB

ContextInstances.md

File metadata and controls

26 lines (20 loc) · 1.62 KB

LaunchDarklyApi::ContextInstances

Properties

Name Type Description Notes
_links Hash<String, Link> The location and content type of related resources [optional]
total_count Integer The number of unique context instances [optional]
_environment_id String The environment ID
continuation_token String An obfuscated string that references the last context instance on the previous page of results. You can use this for pagination, however, we recommend using the <code>next</code> link instead. [optional]
items Array<ContextInstanceRecord> A collection of context instances. Can include multiple versions of context instances that have the same <code>id</code>, but different <code>applicationId</code>s.

Example

require 'launchdarkly_api'

instance = LaunchDarklyApi::ContextInstances.new(
  _links: {&quot;next&quot;:{&quot;href&quot;:&quot;/api/v2/projects/my-project/environments/my-env/context-instances/organization:launch-darkly:user:henry?limit&#x3D;2&amp;continuationToken&#x3D;2022-04-15T15:00:57.526470334Z&quot;,&quot;type&quot;:&quot;application/json&quot;},&quot;self&quot;:{&quot;href&quot;:&quot;/api/v2/projects/my-proj/environments/my-env/context-instances/organization:launch-darkly:user:henry-jacobs?limit&#x3D;2&quot;,&quot;type&quot;:&quot;application/json&quot;}},
  total_count: 100,
  _environment_id: 57be1db38b75bf0772d11384,
  continuation_token: QAGFKH1313KUGI2351,
  items: null
)