box-node-sdk
Version:
Official SDK for Box Platform APIs
150 lines • 5.44 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.AppItemAssociation = void 0;
exports.serializeAppItemAssociationTypeField = serializeAppItemAssociationTypeField;
exports.deserializeAppItemAssociationTypeField = deserializeAppItemAssociationTypeField;
exports.serializeAppItemAssociation = serializeAppItemAssociation;
exports.deserializeAppItemAssociation = deserializeAppItemAssociation;
exports.serializeAppItemAssociationInput = serializeAppItemAssociationInput;
exports.deserializeAppItemAssociationInput = deserializeAppItemAssociationInput;
const appItem_1 = require("./appItem");
const appItem_2 = require("./appItem");
const appItemAssociatedItem_1 = require("./appItemAssociatedItem");
const appItemAssociatedItem_2 = require("./appItemAssociatedItem");
const errors_1 = require("../box/errors");
const json_1 = require("../serialization/json");
const json_2 = require("../serialization/json");
class AppItemAssociation {
constructor(fields) {
/**
* The value will always be `app_item_association`. */
this.type = 'app_item_association';
if (fields.id !== undefined) {
this.id = fields.id;
}
if (fields.type !== undefined) {
this.type = fields.type;
}
if (fields.appItem !== undefined) {
this.appItem = fields.appItem;
}
if (fields.item !== undefined) {
this.item = fields.item;
}
if (fields.rawData !== undefined) {
this.rawData = fields.rawData;
}
}
}
exports.AppItemAssociation = AppItemAssociation;
function serializeAppItemAssociationTypeField(val) {
return val;
}
function deserializeAppItemAssociationTypeField(val) {
if (val == 'app_item_association') {
return val;
}
throw new errors_1.BoxSdkError({
message: "Can't deserialize AppItemAssociationTypeField",
});
}
function serializeAppItemAssociation(val) {
return {
['id']: val.id,
['type']: serializeAppItemAssociationTypeField(val.type),
['app_item']: (0, appItem_1.serializeAppItem)(val.appItem),
['item']: (0, appItemAssociatedItem_1.serializeAppItemAssociatedItem)(val.item),
};
}
function deserializeAppItemAssociation(val) {
if (!(0, json_2.sdIsMap)(val)) {
throw new errors_1.BoxSdkError({
message: 'Expecting a map for "AppItemAssociation"',
});
}
if (val.id == void 0) {
throw new errors_1.BoxSdkError({
message: 'Expecting "id" of type "AppItemAssociation" to be defined',
});
}
if (!(0, json_1.sdIsString)(val.id)) {
throw new errors_1.BoxSdkError({
message: 'Expecting string for "id" of type "AppItemAssociation"',
});
}
const id = val.id;
if (val.type == void 0) {
throw new errors_1.BoxSdkError({
message: 'Expecting "type" of type "AppItemAssociation" to be defined',
});
}
const type = deserializeAppItemAssociationTypeField(val.type);
if (val.app_item == void 0) {
throw new errors_1.BoxSdkError({
message: 'Expecting "app_item" of type "AppItemAssociation" to be defined',
});
}
const appItem = (0, appItem_2.deserializeAppItem)(val.app_item);
if (val.item == void 0) {
throw new errors_1.BoxSdkError({
message: 'Expecting "item" of type "AppItemAssociation" to be defined',
});
}
const item = (0, appItemAssociatedItem_2.deserializeAppItemAssociatedItem)(val.item);
return {
id: id,
type: type,
appItem: appItem,
item: item,
};
}
function serializeAppItemAssociationInput(val) {
return {
['id']: val.id,
['type']: val.type == void 0
? val.type
: serializeAppItemAssociationTypeField(val.type),
['app_item']: (0, appItem_1.serializeAppItem)(val.appItem),
['item']: (0, appItemAssociatedItem_1.serializeAppItemAssociatedItem)(val.item),
};
}
function deserializeAppItemAssociationInput(val) {
if (!(0, json_2.sdIsMap)(val)) {
throw new errors_1.BoxSdkError({
message: 'Expecting a map for "AppItemAssociationInput"',
});
}
if (val.id == void 0) {
throw new errors_1.BoxSdkError({
message: 'Expecting "id" of type "AppItemAssociationInput" to be defined',
});
}
if (!(0, json_1.sdIsString)(val.id)) {
throw new errors_1.BoxSdkError({
message: 'Expecting string for "id" of type "AppItemAssociationInput"',
});
}
const id = val.id;
const type = val.type == void 0
? void 0
: deserializeAppItemAssociationTypeField(val.type);
if (val.app_item == void 0) {
throw new errors_1.BoxSdkError({
message: 'Expecting "app_item" of type "AppItemAssociationInput" to be defined',
});
}
const appItem = (0, appItem_2.deserializeAppItem)(val.app_item);
if (val.item == void 0) {
throw new errors_1.BoxSdkError({
message: 'Expecting "item" of type "AppItemAssociationInput" to be defined',
});
}
const item = (0, appItemAssociatedItem_2.deserializeAppItemAssociatedItem)(val.item);
return {
id: id,
type: type,
appItem: appItem,
item: item,
};
}
//# sourceMappingURL=appItemAssociation.js.map