import * as $dara from '@darabonba/typescript'; export declare class CreateIpcOrderRequest extends $dara.Model { /** * @remarks * The capability. Valid values: * * - understand: Image understanding. Supports the analysis of 300 images per day. * * - understand-reid: Image understanding with person re-identification (ReID). Supports the analysis of 300 images per day. * * - search: Search. Supports 75 searches per day. * * - understand-search: Image understanding and search. Supports the analysis of 300 images and 75 searches per day. * * - understand-reid-search: Image understanding with ReID and search. Supports the analysis of 300 images and 75 searches per day. * * @example * understand */ capability?: string; /** * @remarks * The device ID. * * @example * d123 */ deviceId?: string; /** * @remarks * The subscription period. Valid values: * * - month: A monthly subscription, calculated as 30 days. * * - quarter: A quarterly subscription, calculated as 90 days. * * - year: An annual subscription, calculated as 365 days. * * @example * month */ period?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }