import * as $dara from '@darabonba/typescript'; export declare class DescribeApiDocRequest extends $dara.Model { /** * @remarks * The ID of the API. * * This parameter is required. * * @example * 3b81fd160f5645e097cc8855d75a1cf6 */ apiId?: string; /** * @remarks * The ID of the API group. * * @example * 123 */ groupId?: string; securityToken?: string; /** * @remarks * The environment name. Valid values: * * * **RELEASE** * * **TEST** * * If this parameter is not specified, the default value RELEASE is used. * * @example * RELEASE */ stageName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }