import * as $dara from '@darabonba/typescript'; export declare class DescribeAuthorizedApisRequest extends $dara.Model { /** * @remarks * The application ID, which is generated by the system and globally unique. * * This parameter is required. * * @example * 2386789 */ appId?: number; /** * @remarks * The number of the page to return. Pages start from page 1. Default value: 1. * * @example * 1 */ pageNumber?: number; /** * @remarks * The number of entries to return on each page. Maximum value: 100. Default value: 10. * * @example * 10 */ pageSize?: number; securityToken?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }