// This file is auto-generated, don't edit it import * as $dara from '@darabonba/typescript'; export 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 } { return { apiName: 'ApiName', apiUid: 'ApiUid', appId: 'AppId', description: 'Description', method: 'Method', pageNumber: 'PageNumber', pageSize: 'PageSize', path: 'Path', securityToken: 'SecurityToken', }; } static types(): { [key: string]: any } { return { apiName: 'string', apiUid: 'string', appId: 'number', description: 'string', method: 'string', pageNumber: 'number', pageSize: 'number', path: 'string', securityToken: 'string', }; } validate() { super.validate(); } constructor(map?: { [key: string]: any }) { super(map); } }