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 { GetV1CompaniesCompanyIdPayrollsPayrollIdRequest, GetV1CompaniesCompanyIdPayrollsPayrollIdResponse } from "../models/operations/getv1companiescompanyidpayrollspayrollid.js"; import { APIPromise } from "../types/async.js"; import { Result } from "../types/fp.js"; /** * Get a single payroll * * @remarks * Returns a payroll. If payroll is calculated or processed, will return employee_compensations and totals. * * Results are paginated, with a maximum page size of 100 employee_compensations. * * Notes: * * Hour and dollar amounts are returned as string representations of numeric decimals. * * Hours are represented to the thousands place; dollar amounts are represented to the cent. * * Every eligible compensation is returned for each employee. If no data has yet be inserted for a given field, it defaults to "0.00" (for fixed amounts) or "0.000" (for hours ). * * When include parameter with benefits value is passed, employee_benefits:read scope is required to return benefits * * Benefits containing PHI are only visible with the `employee_benefits:read:phi` scope * * scope: `payrolls:read` * * If set, this operation will use {@link Security.companyAccessAuth} from the global security. */ export declare function payrollsGet(client: GustoEmbeddedCore, request: GetV1CompaniesCompanyIdPayrollsPayrollIdRequest, options?: RequestOptions): APIPromise>; //# sourceMappingURL=payrollsGet.d.ts.map