UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

59 lines 2.61 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.serializeShieldInformationBarrierSegments = serializeShieldInformationBarrierSegments; exports.deserializeShieldInformationBarrierSegments = deserializeShieldInformationBarrierSegments; const shieldInformationBarrierSegment_1 = require("./shieldInformationBarrierSegment"); const shieldInformationBarrierSegment_2 = require("./shieldInformationBarrierSegment"); const errors_1 = require("../box/errors"); const json_1 = require("../serialization/json"); const json_2 = require("../serialization/json"); const json_3 = require("../serialization/json"); const json_4 = require("../serialization/json"); function serializeShieldInformationBarrierSegments(val) { return { ['limit']: val.limit, ['next_marker']: val.nextMarker, ['entries']: val.entries == void 0 ? val.entries : val.entries.map(function (item) { return (0, shieldInformationBarrierSegment_1.serializeShieldInformationBarrierSegment)(item); }), }; } function deserializeShieldInformationBarrierSegments(val) { if (!(0, json_4.sdIsMap)(val)) { throw new errors_1.BoxSdkError({ message: 'Expecting a map for "ShieldInformationBarrierSegments"', }); } if (!(val.limit == void 0) && !(0, json_1.sdIsNumber)(val.limit)) { throw new errors_1.BoxSdkError({ message: 'Expecting number for "limit" of type "ShieldInformationBarrierSegments"', }); } const limit = val.limit == void 0 ? void 0 : val.limit; if (!(val.next_marker == void 0) && !(0, json_2.sdIsString)(val.next_marker)) { throw new errors_1.BoxSdkError({ message: 'Expecting string for "next_marker" of type "ShieldInformationBarrierSegments"', }); } const nextMarker = val.next_marker == void 0 ? void 0 : val.next_marker; if (!(val.entries == void 0) && !(0, json_3.sdIsList)(val.entries)) { throw new errors_1.BoxSdkError({ message: 'Expecting array for "entries" of type "ShieldInformationBarrierSegments"', }); } const entries = val.entries == void 0 ? void 0 : (0, json_3.sdIsList)(val.entries) ? val.entries.map(function (itm) { return (0, shieldInformationBarrierSegment_2.deserializeShieldInformationBarrierSegment)(itm); }) : []; return { limit: limit, nextMarker: nextMarker, entries: entries, }; } //# sourceMappingURL=shieldInformationBarrierSegments.js.map