UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

45 lines 2.37 kB
import { HubDocumentPageV2025R0 } from './hubDocumentPageV2025R0.js'; import { SerializedData } from '../../serialization/json.js'; export type HubDocumentPagesV2025R0TypeField = 'document_pages'; export declare class HubDocumentPagesV2025R0 { /** * Ordered list of pages. */ readonly entries: readonly HubDocumentPageV2025R0[]; /** * The value will always be `document_pages`. */ readonly type: HubDocumentPagesV2025R0TypeField; /** * The limit that was used for these entries. This will be the same as the * `limit` query parameter unless that value exceeded the maximum value * allowed. The maximum value varies by API. */ readonly limit?: number; /** * The marker for the start of the next page of results. */ readonly nextMarker?: string | null; readonly rawData?: SerializedData; constructor(fields: Omit<HubDocumentPagesV2025R0, 'type'> & Partial<Pick<HubDocumentPagesV2025R0, 'type'>>); } export interface HubDocumentPagesV2025R0Input { /** * Ordered list of pages. */ readonly entries: readonly HubDocumentPageV2025R0[]; /** * The value will always be `document_pages`. */ readonly type?: HubDocumentPagesV2025R0TypeField; /** * The limit that was used for these entries. This will be the same as the * `limit` query parameter unless that value exceeded the maximum value * allowed. The maximum value varies by API. */ readonly limit?: number; /** * The marker for the start of the next page of results. */ readonly nextMarker?: string | null; readonly rawData?: SerializedData; } export declare function serializeHubDocumentPagesV2025R0TypeField(val: HubDocumentPagesV2025R0TypeField): SerializedData; export declare function deserializeHubDocumentPagesV2025R0TypeField(val: SerializedData): HubDocumentPagesV2025R0TypeField; export declare function serializeHubDocumentPagesV2025R0(val: HubDocumentPagesV2025R0): SerializedData; export declare function deserializeHubDocumentPagesV2025R0(val: SerializedData): HubDocumentPagesV2025R0; export declare function serializeHubDocumentPagesV2025R0Input(val: HubDocumentPagesV2025R0Input): SerializedData; export declare function deserializeHubDocumentPagesV2025R0Input(val: SerializedData): HubDocumentPagesV2025R0Input; //# sourceMappingURL=hubDocumentPagesV2025R0.d.ts.map