import * as $dara from '@darabonba/typescript'; export declare class DescribeApiHistoryRequest extends $dara.Model { /** * @remarks * The ID of the API. * * This parameter is required. * * @example * dc6e17ee3120404c839bbcd7622ab6ed */ apiId?: string; /** * @remarks * The ID of the API group. This ID is generated by the system and globally unique. * * @example * 3013a55c0c44483f984d26df27120513 */ groupId?: string; /** * @remarks * Specifies the version number that you want to query. * * This parameter is required. * * @example * 20211122155403834 */ historyVersion?: string; securityToken?: string; /** * @remarks * The name of the runtime environment. Valid values: * * * **RELEASE** * * **TEST**: the test environment * * **PRE**: the pre-release environment * * This parameter is required. * * @example * RELEASE */ stageName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }