import * as $dara from '@darabonba/typescript'; export declare class ListDeploymentJobRequest extends $dara.Model { /** * @remarks * The page number. Default value: 1. * * @example * 1 */ currentPage?: number; /** * @remarks * The task type. * * @example * user */ jobType?: string; /** * @remarks * The number of certificates to display per page in a paged query. Default value: **50**. * * @example * 50 */ showSize?: number; /** * @remarks * The deployment task status. * * @example * pending */ status?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }