import * as $dara from '@darabonba/typescript'; export declare class DescribeApisByAppRequest extends $dara.Model { /** * @remarks * The name of the API. The name is used for fuzzy match. * * @example * getPersonInfo */ apiName?: string; /** * @remarks * The API ID. * * @example * b19240592b1b4e74961fb8438ed7550c */ apiUid?: string; /** * @remarks * The application ID. * * This parameter is required. * * @example * 333486644 */ appId?: number; /** * @remarks * The description of the API. * * @example * test */ description?: string; /** * @remarks * The request HTTP method of the API. * * @example * POST */ method?: string; /** * @remarks * The number of the current page. * * @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; }); }