import * as $dara from '@darabonba/typescript'; export declare class DescribeMeterImsMpsAiUsageResponseBodyData extends $dara.Model { /** * @remarks * The usage duration, in minutes. * * @example * 644 */ duration?: number; /** * @remarks * The beginning time of usage. The value is a 10-digit timestamp. * * @example * 1656950400 */ time?: number; /** * @remarks * The AI type. Valid values: */ type?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribeMeterImsMpsAiUsageResponseBody extends $dara.Model { /** * @remarks * The usage statistics of IMS on AI processing of MPS. */ data?: DescribeMeterImsMpsAiUsageResponseBodyData[]; /** * @remarks * The request ID. * * @example * 0622C702-41BE-467E-AF2E-883D4517962E */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }