import * as $dara from '@darabonba/typescript'; export declare class AddCategoryResponseBodyCategory extends $dara.Model { /** * @remarks * The ID of the created category. * * @example * 45 */ cateId?: number; /** * @remarks * The category name. */ cateName?: string; /** * @remarks * The level of the category. A value of **0** indicates a level-1 category, a value of **1** indicates a level-2 category, and a value of **2** indicates a level-3 category. * * @example * 0 */ level?: number; /** * @remarks * The ID of the parent category. By default, if ParentId is left empty or less than 1, -1 is returned, which indicates that the created category is the root directory. * * @example * -1 */ parentId?: number; /** * @remarks * The type of the category. Valid values: * * * **default**: audio, video, and image files. This is the default value. * * **material**: short video materials. * * @example * default */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class AddCategoryResponseBody extends $dara.Model { /** * @remarks * The information about the category. */ category?: AddCategoryResponseBodyCategory; /** * @remarks * The request ID. * * @example * ****63E8B7C7-4812-46AD-0FA56029AC86**** */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }