// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { apiId: 'ApiId', groupId: 'GroupId', historyVersion: 'HistoryVersion', securityToken: 'SecurityToken', stageName: 'StageName', }; } static types(): { [key: string]: any } { return { apiId: 'string', groupId: 'string', historyVersion: 'string', securityToken: 'string', stageName: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }