import * as $dara from '@darabonba/typescript'; export declare class CreateDNADBResponseBodyDBInfo extends $dara.Model { /** * @remarks * The ID of the media fingerprint library. We recommend that you save this ID for subsequent calls of other operations. * * @example * 88c6ca184c0e47098a5b665e2a12**** */ DBId?: string; /** * @remarks * The description of the media fingerprint library. */ description?: string; /** * @remarks * The model of the media fingerprint library. * * @example * Video */ model?: string; /** * @remarks * The name of the media fingerprint library. * * @example * example name */ name?: string; /** * @remarks * The state of the media fingerprint library. After a media fingerprint library is created, it enters the offline state. After the media fingerprint library is processed at the backend, it enters the active state. * * @example * offline */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateDNADBResponseBody extends $dara.Model { /** * @remarks * The details of the media fingerprint library. */ DBInfo?: CreateDNADBResponseBodyDBInfo; /** * @remarks * The request ID. * * @example * 25818875-5F78-4A13-BEF6-D7393642CA58 */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }