import { GustoEmbeddedCore } from "../core.js"; import { RequestOptions } from "../lib/sdks.js"; import { GustoEmbeddedError } from "../models/errors/gustoembeddederror.js"; import { ConnectionError, InvalidRequestError, RequestAbortedError, RequestTimeoutError, UnexpectedClientError } from "../models/errors/httpclienterrors.js"; import { NotFoundErrorObject } from "../models/errors/notfounderrorobject.js"; import { ResponseValidationError } from "../models/errors/responsevalidationerror.js"; import { SDKValidationError } from "../models/errors/sdkvalidationerror.js"; import { UnprocessableEntityError } from "../models/errors/unprocessableentityerror.js"; import { PostV1CompaniesCompanyIdPaySchedulesAssignRequest, PostV1CompaniesCompanyIdPaySchedulesAssignResponse } from "../models/operations/postv1companiescompanyidpayschedulesassign.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Assign pay schedules for a company * * @remarks * This endpoint assigns employees to pay schedules based on the schedule type. * For `by_employee` and `by_department` schedules, use the `partial_assignment` parameter to control the assignment scope. Set it to `true` for partial assignments (only some employees or departments at a time) and `false` for full assignments (all employees or departments at once). * * scope: `pay_schedules:write` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function paySchedulesAssign(client: GustoEmbeddedCore, request: PostV1CompaniesCompanyIdPaySchedulesAssignRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=paySchedulesAssign.d.ts.map