import * as $dara from '@darabonba/typescript'; export declare class PutCustomEventRequestEventInfo extends $dara.Model { /** * @remarks * The event content. Valid values of N: 1 to 50. * * This parameter is required. * * @example * IOException */ content?: string; /** * @remarks * The event name. Valid values of N: 1 to 50. * * This parameter is required. * * @example * myEvent */ eventName?: string; /** * @remarks * The ID of the application group. Valid values of N: 1 to 50. * * Default value: 0. This value indicates that the event to be reported does not belong to any application group. * * @example * 123456 */ groupId?: string; /** * @remarks * The time when the event occurred. * * Format: `yyyyMMddTHHmmss.SSSZ`. * * Valid values of N: 1 to 50. * * > You can also specify a UNIX timestamp. Example: 1552199984000. Unit: milliseconds. * * @example * 20171013T170923.456+0800 */ time?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class PutCustomEventRequest extends $dara.Model { /** * @remarks * The event details. * * This parameter is required. */ eventInfo?: PutCustomEventRequestEventInfo[]; regionId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }