import * as $dara from '@darabonba/typescript'; export declare class CreateDNADBRequest extends $dara.Model { /** * @remarks * The description of the DNA database. * * @example * 这是一个视频DNA库。 */ description?: string; /** * @remarks * The DNA database model. Valid values: * * - **Video**: For video content. * * - **Audio**: For audio content. * * - **Image**: For image content. (Deprecated) * * - **Text**: For text content. Supported only in the China (Shanghai) region. (Deprecated) * * @example * Video */ model?: string; /** * @remarks * The name of the DNA database. * * This parameter is required. * * @example * example name */ name?: string; ownerAccount?: string; ownerId?: number; resourceOwnerAccount?: string; resourceOwnerId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }