box-node-sdk
Version:
Official SDK for Box Platform APIs
21 lines • 917 B
TypeScript
import { HubItemReferenceV2025R0 } from './hubItemReferenceV2025R0.js';
import { SerializedData } from '../../serialization/json.js';
export interface HubItemOperationResultV2025R0 {
/**
* The action performed on the item. */
readonly action?: string;
readonly item?: HubItemReferenceV2025R0;
/**
* The ID of the parent block the item was added to. */
readonly parentId?: string;
/**
* The HTTP status code of the operation. */
readonly status?: number;
/**
* Error message if the operation failed. */
readonly error?: string;
readonly rawData?: SerializedData;
}
export declare function serializeHubItemOperationResultV2025R0(val: HubItemOperationResultV2025R0): SerializedData;
export declare function deserializeHubItemOperationResultV2025R0(val: SerializedData): HubItemOperationResultV2025R0;
//# sourceMappingURL=hubItemOperationResultV2025R0.d.ts.map