Package version:

Interface RunFilterParameters

Query parameters for listing runs.

interface RunFilterParameters {
    continuationToken?: string;
    filters?: RunQueryFilter[];
    lastUpdatedAfter: Date;
    lastUpdatedBefore: Date;
    orderBy?: RunQueryOrderBy[];
}

Properties

continuationToken?: string

The continuation token for getting the next page of results. Null for first page.

filters?: RunQueryFilter[]

List of filters.

lastUpdatedAfter: Date

The time at or after which the run event was updated in 'ISO 8601' format.

lastUpdatedBefore: Date

The time at or before which the run event was updated in 'ISO 8601' format.

orderBy?: RunQueryOrderBy[]

List of OrderBy option.