UNPKG

box-node-sdk

Version:

Official SDK for Box Platform APIs

13 lines (12 loc) 551 B
import { SerializedData } from '../../serialization/json'; 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; readonly rawData?: SerializedData; } export declare function serializeHubCopyRequestV2025R0(val: HubCopyRequestV2025R0): SerializedData; export declare function deserializeHubCopyRequestV2025R0(val: SerializedData): HubCopyRequestV2025R0;