UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

19 lines 822 B
import { SerializedData } from '../../serialization/json.js'; export interface HubDocumentPageV2025R0 { /** * The unique identifier for this page. */ readonly id: string; /** * The type of this resource. The value is always `page`. */ readonly type: string; /** * The unique identifier of the parent page. Null for root-level pages. */ readonly parentId?: string | null; /** * The title text of the page. Includes rich text formatting. */ readonly titleFragment: string; readonly rawData?: SerializedData; } export declare function serializeHubDocumentPageV2025R0(val: HubDocumentPageV2025R0): SerializedData; export declare function deserializeHubDocumentPageV2025R0(val: SerializedData): HubDocumentPageV2025R0; //# sourceMappingURL=hubDocumentPageV2025R0.d.ts.map