box-node-sdk
Version:
Official SDK for Box Platform APIs
25 lines (24 loc) • 1.05 kB
TypeScript
import { SerializedData } from '../../serialization/json';
export interface HubUpdateRequestV2025R0 {
/**
* 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;
/**
* Indicates if AI features are enabled for the Box Hub. */
readonly isAiEnabled?: boolean;
/**
* Indicates if collaboration is restricted to the enterprise. */
readonly isCollaborationRestrictedToEnterprise?: boolean;
/**
* Indicates if non-owners can invite others to the Box Hub. */
readonly canNonOwnersInvite?: boolean;
/**
* Indicates if a shared link can be created for the Box Hub. */
readonly canSharedLinkBeCreated?: boolean;
readonly rawData?: SerializedData;
}
export declare function serializeHubUpdateRequestV2025R0(val: HubUpdateRequestV2025R0): SerializedData;
export declare function deserializeHubUpdateRequestV2025R0(val: SerializedData): HubUpdateRequestV2025R0;