UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

96 lines 3.09 kB
import { BoxSdkError } from '../../box/errors.js'; import { sdIsString } from '../../serialization/json.js'; import { sdIsMap } from '../../serialization/json.js'; export class NotesConvertResponseV2026R0 { /** * The Box resource type; always `file` for a Box file. */ type = 'file'; /** * Box file ID of the created `.boxnote` file. */ id; rawData; constructor(fields) { if (fields.type !== undefined) { this.type = fields.type; } if (fields.id !== undefined) { this.id = fields.id; } if (fields.rawData !== undefined) { this.rawData = fields.rawData; } } } export function serializeNotesConvertResponseV2026R0TypeField(val) { return val; } export function deserializeNotesConvertResponseV2026R0TypeField(val) { if (val == 'file') { return val; } throw new BoxSdkError({ message: "Can't deserialize NotesConvertResponseV2026R0TypeField", }); } export function serializeNotesConvertResponseV2026R0(val) { return { ['type']: serializeNotesConvertResponseV2026R0TypeField(val.type), ['id']: val.id, }; } export function deserializeNotesConvertResponseV2026R0(val) { if (!sdIsMap(val)) { throw new BoxSdkError({ message: 'Expecting a map for "NotesConvertResponseV2026R0"', }); } if (val.type == void 0) { throw new BoxSdkError({ message: 'Expecting "type" of type "NotesConvertResponseV2026R0" to be defined', }); } const type = deserializeNotesConvertResponseV2026R0TypeField(val.type); if (val.id == void 0) { throw new BoxSdkError({ message: 'Expecting "id" of type "NotesConvertResponseV2026R0" to be defined', }); } if (!sdIsString(val.id)) { throw new BoxSdkError({ message: 'Expecting string for "id" of type "NotesConvertResponseV2026R0"', }); } const id = val.id; return { type: type, id: id }; } export function serializeNotesConvertResponseV2026R0Input(val) { return { ['type']: val.type == void 0 ? val.type : serializeNotesConvertResponseV2026R0TypeField(val.type), ['id']: val.id, }; } export function deserializeNotesConvertResponseV2026R0Input(val) { if (!sdIsMap(val)) { throw new BoxSdkError({ message: 'Expecting a map for "NotesConvertResponseV2026R0Input"', }); } const type = val.type == void 0 ? void 0 : deserializeNotesConvertResponseV2026R0TypeField(val.type); if (val.id == void 0) { throw new BoxSdkError({ message: 'Expecting "id" of type "NotesConvertResponseV2026R0Input" to be defined', }); } if (!sdIsString(val.id)) { throw new BoxSdkError({ message: 'Expecting string for "id" of type "NotesConvertResponseV2026R0Input"', }); } const id = val.id; return { type: type, id: id }; } //# sourceMappingURL=notesConvertResponseV2026R0.js.map