import * as $dara from '@darabonba/typescript'; export declare class DescribeApisWithStageNameIntegratedByAppRequest extends $dara.Model { /** * @remarks * The API name. * * @example * ApiName */ apiName?: string; /** * @remarks * The API ID. * * @example * b19240592b1b4e74961fb8438ed7550c */ apiUid?: string; /** * @remarks * The application ID. * * This parameter is required. * * @example * 2386789 */ appId?: number; /** * @remarks * The API description. The description can be up to 200 characters in length. * * @example * test */ description?: string; /** * @remarks * The request HTTP method of the API. * * @example * POST */ method?: string; /** * @remarks * The page number of the page to return. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries per page. * * @example * 10 */ pageSize?: number; /** * @remarks * The request path of the API. * * @example * /tt */ path?: string; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }