import * as $dara from '@darabonba/typescript'; export declare class ListCsrRequest extends $dara.Model { /** * @remarks * The algorithm. Valid values: RSA, ECC, and SM2. * * @example * RSA */ algorithm?: string; /** * @remarks * The page number. Default value: 1. * * @example * 1 */ currentPage?: number; /** * @remarks * The keyword for fuzzy search. For example, you can specify a domain name. * * @example * test_name */ keyWord?: string; /** * @remarks * The number of entries per page. Default value: 50. * * @example * 10 */ showSize?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }