box-node-sdk
Version:
Official SDK for Box Platform APIs
17 lines • 809 B
TypeScript
import { SerializedData } from '../../serialization/json.js';
export interface HubCopyRequestV2025R0 {
/**
* Title of the Box Hub. It cannot be empty and should be less than 50 characters. */
readonly title?: string;
/**
* Description of the Box Hub. */
readonly description?: string;
/**
* If true, the items which the user has Editor or Owner access to in the original Box Hub will be copied to the new Box Hub.
* Defaults to false. */
readonly includeItems?: boolean;
readonly rawData?: SerializedData;
}
export declare function serializeHubCopyRequestV2025R0(val: HubCopyRequestV2025R0): SerializedData;
export declare function deserializeHubCopyRequestV2025R0(val: SerializedData): HubCopyRequestV2025R0;
//# sourceMappingURL=hubCopyRequestV2025R0.d.ts.map