UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

19 lines 954 B
import { QueryResultEntryV2026R0 } from './queryResultEntryV2026R0.js'; import { SerializedData } from '../../serialization/json.js'; export interface QueryResultsV2026R0 { /** * The list of items matching the query predicate. */ readonly entries: readonly QueryResultEntryV2026R0[]; /** * The marker for the start of the next page of results. When `null`, there * are no further results available. */ readonly nextMarker?: string | null; /** * The limit that was used for this request. This will be the same as the limit query * parameter unless that value exceeded the maximum value allowed. */ readonly limit: number; readonly rawData?: SerializedData; } export declare function serializeQueryResultsV2026R0(val: QueryResultsV2026R0): SerializedData; export declare function deserializeQueryResultsV2026R0(val: SerializedData): QueryResultsV2026R0; //# sourceMappingURL=queryResultsV2026R0.d.ts.map