| Name |
Type |
Description |
Notes |
| _links |
{ [key: string]: Link; } |
The location and content type of related resources |
[optional] [default to undefined] |
| totalCount |
number |
The number of unique context instances |
[optional] [default to undefined] |
| _environmentId |
string |
The environment ID |
[default to undefined] |
| continuationToken |
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] [default to undefined] |
| 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. |
[default to undefined] |
import { ContextInstances } from 'launchdarkly-api-typescript';
const instance: ContextInstances = {
_links,
totalCount,
_environmentId,
continuationToken,
items,
};
[Back to Model list] [Back to API list] [Back to README]