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 { PutV1CompanyPaymentConfigsRequest, PutV1CompanyPaymentConfigsResponse } from "../models/operations/putv1companypaymentconfigs.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Update a company's payment configs * * @remarks * Update payment speed, fast payment limit, and/or partner-owned disbursement for a company. * * At least one of `payment_speed`, `fast_payment_limit`, or `partner_owned_disbursement` is required. * 1-day payment speed is only applicable to partners that opt in. 1-day is not allowed when AutoPilot is enabled. * * ### Related guides * - [Payroll Processing Speeds](doc:2-day-vs-4-day) * * scope: `company_payment_configs:write` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function paymentConfigsUpdate(client: GustoEmbeddedCore, request: PutV1CompanyPaymentConfigsRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=paymentConfigsUpdate.d.ts.map