box-node-sdk
Version:
Official SDK for Box Platform APIs
60 lines • 2.11 kB
JavaScript
import { serializeHubItemReferenceV2025R0 } from './hubItemReferenceV2025R0.js';
import { deserializeHubItemReferenceV2025R0 } from './hubItemReferenceV2025R0.js';
import { BoxSdkError } from '../../box/errors.js';
import { sdIsString } from '../../serialization/json.js';
import { sdIsMap } from '../../serialization/json.js';
export function serializeHubItemOperationV2025R0ActionField(val) {
return val;
}
export function deserializeHubItemOperationV2025R0ActionField(val) {
if (val == 'add') {
return val;
}
if (val == 'remove') {
return val;
}
if (sdIsString(val)) {
return val;
}
throw new BoxSdkError({
message: "Can't deserialize HubItemOperationV2025R0ActionField",
});
}
export function serializeHubItemOperationV2025R0(val) {
return {
['action']: serializeHubItemOperationV2025R0ActionField(val.action),
['item']: serializeHubItemReferenceV2025R0(val.item),
['parent_id']: val.parentId,
};
}
export function deserializeHubItemOperationV2025R0(val) {
if (!sdIsMap(val)) {
throw new BoxSdkError({
message: 'Expecting a map for "HubItemOperationV2025R0"',
});
}
if (val.action == void 0) {
throw new BoxSdkError({
message: 'Expecting "action" of type "HubItemOperationV2025R0" to be defined',
});
}
const action = deserializeHubItemOperationV2025R0ActionField(val.action);
if (val.item == void 0) {
throw new BoxSdkError({
message: 'Expecting "item" of type "HubItemOperationV2025R0" to be defined',
});
}
const item = deserializeHubItemReferenceV2025R0(val.item);
if (!(val.parent_id == void 0) && !sdIsString(val.parent_id)) {
throw new BoxSdkError({
message: 'Expecting string for "parent_id" of type "HubItemOperationV2025R0"',
});
}
const parentId = val.parent_id == void 0 ? void 0 : val.parent_id;
return {
action: action,
item: item,
parentId: parentId,
};
}
//# sourceMappingURL=hubItemOperationV2025R0.js.map