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 { GetV1CompaniesCompanyIdEmployeesPaymentDetailsRequest, GetV1CompaniesCompanyIdEmployeesPaymentDetailsResponse } from "../models/operations/getv1companiescompanyidemployeespaymentdetails.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get employee payment details for a company * * @remarks * Fetches payment details for employees in a given company. Results are paginated. * * Use the `employee_uuid` query parameter to filter for a single employee. * Use the `payroll_uuid` query parameter to filter for employees on a specific payroll. * Providing both `employee_uuid` and `payroll_uuid` will result in a 422 error. * An empty array is returned if the company has no employees or if no employees match the filter criteria. * * The `encrypted_account_number` in the `splits` array is only visible if the `employee_payment_methods:read:account_number` scope is present. * * scope: `employee_payment_methods:read` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function employeesGetV1CompaniesCompanyIdEmployeesPaymentDetails(client: GustoEmbeddedCore, request: GetV1CompaniesCompanyIdEmployeesPaymentDetailsRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=employeesGetV1CompaniesCompanyIdEmployeesPaymentDetails.d.ts.map