UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

129 lines 4.71 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.serializeCommentsOrderDirectionField = serializeCommentsOrderDirectionField; exports.deserializeCommentsOrderDirectionField = deserializeCommentsOrderDirectionField; exports.serializeCommentsOrderField = serializeCommentsOrderField; exports.deserializeCommentsOrderField = deserializeCommentsOrderField; exports.serializeComments = serializeComments; exports.deserializeComments = deserializeComments; const commentFull_1 = require("./commentFull"); const commentFull_2 = require("./commentFull"); 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 serializeCommentsOrderDirectionField(val) { return val; } function deserializeCommentsOrderDirectionField(val) { if (val == 'ASC') { return val; } if (val == 'DESC') { return val; } if ((0, json_2.sdIsString)(val)) { return val; } throw new errors_1.BoxSdkError({ message: "Can't deserialize CommentsOrderDirectionField", }); } function serializeCommentsOrderField(val) { return { ['by']: val.by, ['direction']: val.direction == void 0 ? val.direction : serializeCommentsOrderDirectionField(val.direction), }; } function deserializeCommentsOrderField(val) { if (!(0, json_4.sdIsMap)(val)) { throw new errors_1.BoxSdkError({ message: 'Expecting a map for "CommentsOrderField"', }); } if (!(val.by == void 0) && !(0, json_2.sdIsString)(val.by)) { throw new errors_1.BoxSdkError({ message: 'Expecting string for "by" of type "CommentsOrderField"', }); } const by = val.by == void 0 ? void 0 : val.by; const direction = val.direction == void 0 ? void 0 : deserializeCommentsOrderDirectionField(val.direction); return { by: by, direction: direction }; } function serializeComments(val) { return { ['total_count']: val.totalCount, ['limit']: val.limit, ['offset']: val.offset, ['order']: val.order == void 0 ? val.order : val.order.map(function (item) { return serializeCommentsOrderField(item); }), ['entries']: val.entries == void 0 ? val.entries : val.entries.map(function (item) { return (0, commentFull_1.serializeCommentFull)(item); }), }; } function deserializeComments(val) { if (!(0, json_4.sdIsMap)(val)) { throw new errors_1.BoxSdkError({ message: 'Expecting a map for "Comments"' }); } if (!(val.total_count == void 0) && !(0, json_1.sdIsNumber)(val.total_count)) { throw new errors_1.BoxSdkError({ message: 'Expecting number for "total_count" of type "Comments"', }); } const totalCount = val.total_count == void 0 ? void 0 : val.total_count; if (!(val.limit == void 0) && !(0, json_1.sdIsNumber)(val.limit)) { throw new errors_1.BoxSdkError({ message: 'Expecting number for "limit" of type "Comments"', }); } const limit = val.limit == void 0 ? void 0 : val.limit; if (!(val.offset == void 0) && !(0, json_1.sdIsNumber)(val.offset)) { throw new errors_1.BoxSdkError({ message: 'Expecting number for "offset" of type "Comments"', }); } const offset = val.offset == void 0 ? void 0 : val.offset; if (!(val.order == void 0) && !(0, json_3.sdIsList)(val.order)) { throw new errors_1.BoxSdkError({ message: 'Expecting array for "order" of type "Comments"', }); } const order = val.order == void 0 ? void 0 : (0, json_3.sdIsList)(val.order) ? val.order.map(function (itm) { return deserializeCommentsOrderField(itm); }) : []; if (!(val.entries == void 0) && !(0, json_3.sdIsList)(val.entries)) { throw new errors_1.BoxSdkError({ message: 'Expecting array for "entries" of type "Comments"', }); } const entries = val.entries == void 0 ? void 0 : (0, json_3.sdIsList)(val.entries) ? val.entries.map(function (itm) { return (0, commentFull_2.deserializeCommentFull)(itm); }) : []; return { totalCount: totalCount, limit: limit, offset: offset, order: order, entries: entries, }; } //# sourceMappingURL=comments.js.map