import * as $dara from '@darabonba/typescript'; export declare class DeleteRecognitionEntityRequest extends $dara.Model { /** * @remarks * The type of recognition algorithm associated with the entity. Valid values: * * * landmark * * object * * logo * * face * * label * * This parameter is required. * * @example * landmark */ algorithm?: string; /** * @remarks * The ID of the entity to be deleted. * * This parameter is required. * * @example * **************544cb84754************ */ entityId?: string; /** * @remarks * The ID of the recognition library. * * This parameter is required. * * @example * *************24b47865c6************** */ libId?: 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; }); }