import * as $dara from '@darabonba/typescript'; export declare class CreateDNADBRequest extends $dara.Model { /** * @remarks * The description of the media fingerprint library. */ description?: string; /** * @remarks * The model of the media fingerprint library. Valid values: * * * **Video** * * **Audio** * * **Image** * * **Text** (supported only in the China (Shanghai) region) * * @example * Video */ model?: string; /** * @remarks * The name of the media fingerprint library. * * 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; }); }