UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

17 lines (16 loc) 1.08 kB
import { HubDocumentBlockV2025R0 } from './hubDocumentBlockV2025R0.js'; import { SerializedData } from '../../serialization/json.js'; export type HubItemListBlockV2025R0TypeField = 'item_list'; export declare class HubItemListBlockV2025R0 implements HubDocumentBlockV2025R0 { readonly id: string; readonly parentId?: string | null; readonly rawData?: SerializedData; /** * The type of this block. The value is always `item_list`. */ readonly type: HubItemListBlockV2025R0TypeField; constructor(fields: Omit<HubItemListBlockV2025R0, 'type'> & Partial<Pick<HubItemListBlockV2025R0, 'type'>>); } export declare function serializeHubItemListBlockV2025R0TypeField(val: HubItemListBlockV2025R0TypeField): SerializedData; export declare function deserializeHubItemListBlockV2025R0TypeField(val: SerializedData): HubItemListBlockV2025R0TypeField; export declare function serializeHubItemListBlockV2025R0(val: HubItemListBlockV2025R0): SerializedData; export declare function deserializeHubItemListBlockV2025R0(val: SerializedData): HubItemListBlockV2025R0;