UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

106 lines 3.48 kB
import { serializeHubDocumentBlockV2025R0 } from './hubDocumentBlockV2025R0.js'; import { BoxSdkError } from '../../box/errors.js'; import { sdIsString } from '../../serialization/json.js'; import { sdIsMap } from '../../serialization/json.js'; export class HubParagraphTextBlockV2025R0 { id; parentId; rawData; /** * The type of this block. The value is always `paragraph`. */ type = 'paragraph'; /** * Text content of the block. Includes rich text formatting. */ fragment; constructor(fields) { if (fields.id !== undefined) { this.id = fields.id; } if (fields.parentId !== undefined) { this.parentId = fields.parentId; } if (fields.rawData !== undefined) { this.rawData = fields.rawData; } if (fields.type !== undefined) { this.type = fields.type; } if (fields.fragment !== undefined) { this.fragment = fields.fragment; } } } export function serializeHubParagraphTextBlockV2025R0TypeField(val) { return val; } export function deserializeHubParagraphTextBlockV2025R0TypeField(val) { if (val == 'paragraph') { return val; } throw new BoxSdkError({ message: "Can't deserialize HubParagraphTextBlockV2025R0TypeField", }); } export function serializeHubParagraphTextBlockV2025R0(val) { const base = serializeHubDocumentBlockV2025R0(val); if (!sdIsMap(base)) { throw new BoxSdkError({ message: 'Expecting a map for "HubParagraphTextBlockV2025R0"', }); } return { ...base, ...{ ['type']: serializeHubParagraphTextBlockV2025R0TypeField(val.type), ['fragment']: val.fragment, }, }; } export function deserializeHubParagraphTextBlockV2025R0(val) { if (!sdIsMap(val)) { throw new BoxSdkError({ message: 'Expecting a map for "HubParagraphTextBlockV2025R0"', }); } if (val.type == void 0) { throw new BoxSdkError({ message: 'Expecting "type" of type "HubParagraphTextBlockV2025R0" to be defined', }); } const type = deserializeHubParagraphTextBlockV2025R0TypeField(val.type); if (val.fragment == void 0) { throw new BoxSdkError({ message: 'Expecting "fragment" of type "HubParagraphTextBlockV2025R0" to be defined', }); } if (!sdIsString(val.fragment)) { throw new BoxSdkError({ message: 'Expecting string for "fragment" of type "HubParagraphTextBlockV2025R0"', }); } const fragment = val.fragment; if (val.id == void 0) { throw new BoxSdkError({ message: 'Expecting "id" of type "HubParagraphTextBlockV2025R0" to be defined', }); } if (!sdIsString(val.id)) { throw new BoxSdkError({ message: 'Expecting string for "id" of type "HubParagraphTextBlockV2025R0"', }); } const id = val.id; if (!(val.parent_id == void 0) && !sdIsString(val.parent_id)) { throw new BoxSdkError({ message: 'Expecting string for "parent_id" of type "HubParagraphTextBlockV2025R0"', }); } const parentId = val.parent_id == void 0 ? void 0 : val.parent_id; return { type: type, fragment: fragment, id: id, parentId: parentId, }; } //# sourceMappingURL=hubParagraphTextBlockV2025R0.js.map