import * as $dara from '@darabonba/typescript'; export declare class ListCompaniesRequest extends $dara.Model { /** * @remarks * The company ID. * * @example * 51001 */ companyId?: number; /** * @remarks * The page number of the current page. Default value: 1. * * @example * 1 */ currentPage?: number; /** * @remarks * The search keyword. For example, a keyword for the company name, province, country code, or city. * * @example * test */ keyword?: string; /** * @remarks * The number of contacts to display per page in a paged query. * * @example * 20 */ showSize?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }