UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

55 lines 2.17 kB
import { serializeAutomateWorkflowActionV2026R0 } from './automateWorkflowActionV2026R0.js'; import { deserializeAutomateWorkflowActionV2026R0 } from './automateWorkflowActionV2026R0.js'; import { BoxSdkError } from '../../box/errors.js'; import { sdIsNumber } from '../../serialization/json.js'; import { sdIsString } from '../../serialization/json.js'; import { sdIsList } from '../../serialization/json.js'; import { sdIsMap } from '../../serialization/json.js'; export function serializeAutomateWorkflowsV2026R0(val) { return { ['entries']: val.entries == void 0 ? val.entries : val.entries.map(function (item) { return serializeAutomateWorkflowActionV2026R0(item); }), ['limit']: val.limit, ['next_marker']: val.nextMarker, }; } export function deserializeAutomateWorkflowsV2026R0(val) { if (!sdIsMap(val)) { throw new BoxSdkError({ message: 'Expecting a map for "AutomateWorkflowsV2026R0"', }); } if (!(val.entries == void 0) && !sdIsList(val.entries)) { throw new BoxSdkError({ message: 'Expecting array for "entries" of type "AutomateWorkflowsV2026R0"', }); } const entries = val.entries == void 0 ? void 0 : sdIsList(val.entries) ? val.entries.map(function (itm) { return deserializeAutomateWorkflowActionV2026R0(itm); }) : []; if (!(val.limit == void 0) && !sdIsNumber(val.limit)) { throw new BoxSdkError({ message: 'Expecting number for "limit" of type "AutomateWorkflowsV2026R0"', }); } const limit = val.limit == void 0 ? void 0 : val.limit; if (!(val.next_marker == void 0) && !sdIsString(val.next_marker)) { throw new BoxSdkError({ message: 'Expecting string for "next_marker" of type "AutomateWorkflowsV2026R0"', }); } const nextMarker = val.next_marker == void 0 ? void 0 : val.next_marker; return { entries: entries, limit: limit, nextMarker: nextMarker, }; } //# sourceMappingURL=automateWorkflowsV2026R0.js.map