import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import { GetV1EmployeesEmployeeIdGarnishmentsRequest, GetV1EmployeesEmployeeIdGarnishmentsResponse } from "../models/operations/getv1employeesemployeeidgarnishments.js"; import { GetV1GarnishmentsChildSupportRequest, GetV1GarnishmentsChildSupportResponse } from "../models/operations/getv1garnishmentschildsupport.js"; import { GetV1GarnishmentsGarnishmentIdRequest, GetV1GarnishmentsGarnishmentIdResponse } from "../models/operations/getv1garnishmentsgarnishmentid.js"; import { PostV1EmployeesEmployeeIdGarnishmentsRequest, PostV1EmployeesEmployeeIdGarnishmentsResponse } from "../models/operations/postv1employeesemployeeidgarnishments.js"; import { PutV1GarnishmentsGarnishmentIdRequest, PutV1GarnishmentsGarnishmentIdResponse } from "../models/operations/putv1garnishmentsgarnishmentid.js"; export declare class Garnishments extends ClientSDK { /** * Get garnishments for an employee * * @remarks * Garnishments, or employee deductions, are fixed amounts or percentages deducted from an employee’s pay. They can be deducted a specific number of times or on a recurring basis. Garnishments can also have maximum deductions on a yearly or per-pay-period bases. Common uses for garnishments are court-ordered payments for child support or back taxes. Some companies provide loans to their employees that are repaid via garnishments. * * scope: `garnishments:read` */ list(request: GetV1EmployeesEmployeeIdGarnishmentsRequest, options?: RequestOptions): Promise; /** * Create a garnishment * * @remarks * Garnishments, or employee deductions, are fixed amounts or percentages deducted from an employee’s pay. They can be deducted a specific number of times or on a recurring basis. Garnishments can also have maximum deductions on a yearly or per-pay-period bases. Common uses for garnishments are court-ordered payments for child support or back taxes. Some companies provide loans to their employees that are repaid via garnishments. * * scope: `garnishments:write` */ create(request: PostV1EmployeesEmployeeIdGarnishmentsRequest, options?: RequestOptions): Promise; /** * Get a garnishment * * @remarks * Garnishments, or employee deductions, are fixed amounts or percentages deducted from an employee’s pay. They can be deducted a specific number of times or on a recurring basis. Garnishments can also have maximum deductions on a yearly or per-pay-period bases. Common uses for garnishments are court-ordered payments for child support or back taxes. Some companies provide loans to their employees that are repaid via garnishments. * * scope: `garnishments:read` */ get(request: GetV1GarnishmentsGarnishmentIdRequest, options?: RequestOptions): Promise; /** * Update a garnishment * * @remarks * Garnishments, or employee deductions, are fixed amounts or percentages deducted from an employee’s pay. They can be deducted a specific number of times or on a recurring basis. Garnishments can also have maximum deductions on a yearly or per-pay-period bases. Common uses for garnishments are court-ordered payments for child support or back taxes. Some companies provide loans to their employees that are repaid via garnishments. * * scope: `garnishments:write` */ update(request: PutV1GarnishmentsGarnishmentIdRequest, options?: RequestOptions): Promise; /** * Get child support garnishment data * * @remarks * Agency data and requirements to be used for creating child support garnishments * * scope: `garnishments:read` */ getChildSupportData(request: GetV1GarnishmentsChildSupportRequest, options?: RequestOptions): Promise; } //# sourceMappingURL=garnishments.d.ts.map