import * as $dara from '@darabonba/typescript'; export declare class ModifyCostUnitResponseBodyData extends $dara.Model { /** * @remarks * Indicates whether the cost center was modified. * * @example * true */ isSuccess?: boolean; /** * @remarks * The user ID of the cost center owner. * * @example * 823756287 */ ownerUid?: number; /** * @remarks * The ID of the cost center. * * @example * 356349875 */ unitId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ModifyCostUnitResponseBody extends $dara.Model { /** * @remarks * The status code. * * @example * Success */ code?: string; /** * @remarks * The data returned. */ data?: ModifyCostUnitResponseBodyData[]; /** * @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 was successful. * * @example * true */ success?: boolean; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }