import * as $dara from '@darabonba/typescript'; export declare class ModifyCostUnitRequestUnitEntityList extends $dara.Model { /** * @remarks * The new name of the cost center. * * This parameter is required. * * @example * newTest */ newUnitName?: string; /** * @remarks * The user ID of the cost center owner. * * This parameter is required. * * @example * 1321312312 */ ownerUid?: number; /** * @remarks * The ID of the cost center. * * This parameter is required. * * @example * 2524352 */ unitId?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class ModifyCostUnitRequest extends $dara.Model { /** * @remarks * The cost centers to be modified. */ unitEntityList?: ModifyCostUnitRequestUnitEntityList[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }