import * as $dara from '@darabonba/typescript'; export declare class DeleteCostUnitResponseBodyData extends $dara.Model { /** * @remarks * Indicates whether the call is complete. * * @example * true */ isSuccess?: boolean; /** * @remarks * The user ID of the cost center owner. * * @example * 12431 */ ownerUid?: number; /** * @remarks * The ID of the cost center. * * @example * 123412343 */ unitId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DeleteCostUnitResponseBody extends $dara.Model { /** * @remarks * The status code. * * @example * Success */ code?: string; /** * @remarks * The data returned. */ data?: DeleteCostUnitResponseBodyData; /** * @remarks * The error message. * * @example * Successful! */ message?: string; /** * @remarks * The ID of the request. * * @example * F5B803CF-94D8-43AF-ADB3-D819AAD30E27 */ 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; }); }