Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.31 KB

File metadata and controls

26 lines (19 loc) · 1.31 KB

ContextInstanceSearch

Properties

Name Type Description Notes
filter string A collection of context instance filters [optional] [default to undefined]
sort string Specifies a field by which to sort. LaunchDarkly supports sorting by timestamp in ascending order by specifying <code>ts</code> for this value, or descending order by specifying <code>-ts</code>. [optional] [default to undefined]
limit number Specifies the maximum number of items in the collection to return (max: 50, default: 20) [optional] [default to undefined]
continuationToken string Limits results to context instances with sort values after the value specified. You can use this for pagination, however, we recommend using the <code>next</code> link instead, because this value is an obfuscated string. [optional] [default to undefined]

Example

import { ContextInstanceSearch } from 'launchdarkly-api-typescript';

const instance: ContextInstanceSearch = {
    filter,
    sort,
    limit,
    continuationToken,
};

[Back to Model list] [Back to API list] [Back to README]