import * as $dara from '@darabonba/typescript'; export declare class DescribeHistoryApisRequest extends $dara.Model { /** * @remarks * The ID of the API. * * @example * a12068f555964ca8a0c9c33288f1e5a7 */ apiId?: string; /** * @remarks * The name of the API. The name is used for fuzzy match. * * @example * getPersonInfo */ apiName?: string; /** * @remarks * The ID of the API group. * * This parameter is required. * * @example * 0ccb66aadb5345b78a40f57d192d8aa4 */ groupId?: string; /** * @remarks * The page number of the current page. * * @example * 2 */ pageNumber?: string; /** * @remarks * The number of entries to return on each page. * * @example * 10 */ pageSize?: string; securityToken?: string; /** * @remarks * The name of the runtime environment. Valid values: * * * **RELEASE** * * **TEST** * * @example * RELEASE */ stageName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }