PagedQueryResult for ImportContainers. Used as a response to a query request for ImportContainers.

interface ImportContainerPagedResponse {
    count: number;
    limit: number;
    offset: number;
    results: ImportContainer[];
    total: number;
}

Properties

count: number

The actual number of results returned.

limit: number

Number of results requested.

offset: number

Number of elements skipped.

results: ImportContainer[]

The array of Import Containers matching the query.

total: number

The total number of results matching the query.