UNPKG

@apideck/node

Version:
76 lines (75 loc) 2.22 kB
/** * Apideck * The Apideck OpenAPI Spec: SDK Optimized * * The version of the OpenAPI document: 10.13.0 * Contact: support@apideck.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The overview of the payroll totals. * @export * @interface PayrollTotals */ export interface PayrollTotals { /** * The total company debit for the payroll. * @type {number} * @memberof PayrollTotals */ company_debit?: number | null; /** * The total tax debit for the payroll. * @type {number} * @memberof PayrollTotals */ tax_debit?: number | null; /** * The total check amount for the payroll. * @type {number} * @memberof PayrollTotals */ check_amount?: number | null; /** * The net pay amount for the payroll. * @type {number} * @memberof PayrollTotals */ net_pay?: number | null; /** * The gross pay amount for the payroll. * @type {number} * @memberof PayrollTotals */ gross_pay?: number | null; /** * The total amount of employer paid taxes for the payroll. * @type {number} * @memberof PayrollTotals */ employer_taxes?: number | null; /** * The total amount of employee paid taxes for the payroll. * @type {number} * @memberof PayrollTotals */ employee_taxes?: number | null; /** * The total amount of company contributed benefits for the payroll. * @type {number} * @memberof PayrollTotals */ employer_benefit_contributions?: number | null; /** * The total amount of employee deducted benefits for the payroll. * @type {number} * @memberof PayrollTotals */ employee_benefit_deductions?: number | null; } export declare function PayrollTotalsFromJSON(json: any): PayrollTotals; export declare function PayrollTotalsFromJSONTyped(json: any, ignoreDiscriminator: boolean): PayrollTotals; export declare function PayrollTotalsToJSON(value?: PayrollTotals | null): any;