import * as $dara from '@darabonba/typescript'; export declare class CreateCostUnitResponseBodyDataCostUnitDtoList extends $dara.Model { /** * @remarks * The user ID of the owner of the cost center. * * @example * 26387563 */ 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 * 84327659328 */ 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 CreateCostUnitResponseBodyData extends $dara.Model { /** * @remarks * The list of cost center entities. */ costUnitDtoList?: CreateCostUnitResponseBodyDataCostUnitDtoList[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class CreateCostUnitResponseBody extends $dara.Model { /** * @remarks * The status code. * * @example * Success */ code?: string; /** * @remarks * The data returned. */ data?: CreateCostUnitResponseBodyData; /** * @remarks * The error message returned. * * @example * Successful! */ message?: string; /** * @remarks * The ID of the request. * * @example * F5B803CF-94D8-43AF-ADB3-D819AAD30E27 */ requestId?: string; /** * @remarks * Indicates whether the call is successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }