import * as $dara from '@darabonba/typescript'; export declare class QueryCostUnitResponseBodyDataCostUnitDtoList extends $dara.Model { /** * @remarks * The user ID of the cost center owner. * * @example * 2343464 */ ownerUid?: number; /** * @remarks * The ID of the parent cost center. A value of -1 indicates the root cost center. * * @example * -1 */ parentUnitId?: number; /** * @remarks * The ID of the cost center. * * @example * 23534 */ unitId?: number; /** * @remarks * The name of the cost center. * * @example * test */ unitName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryCostUnitResponseBodyData extends $dara.Model { /** * @remarks * The cost centers. */ costUnitDtoList?: QueryCostUnitResponseBodyDataCostUnitDtoList[]; /** * @remarks * The page number of the returned page. * * @example * 1 */ pageNum?: number; /** * @remarks * The number of entries returned on each page. * * @example * 20 */ pageSize?: number; /** * @remarks * The total number of returned entries. * * @example * 1 */ totalCount?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class QueryCostUnitResponseBody extends $dara.Model { /** * @remarks * The status code. * * @example * Success */ code?: string; /** * @remarks * The data returned. */ data?: QueryCostUnitResponseBodyData; /** * @remarks * The error message returned. * * @example * Successful! */ message?: string; /** * @remarks * The ID of the request. * * @example * 6000EE23-274B-4E07-A697-FF2E999520A4 */ requestId?: string; /** * @remarks * Indicates whether the request was successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }