import { PayrollBonusResponse } from '../../ca-period-content/models/payroll-bonus-response'; import { PayrollCreditResponse } from '../../ca-period-content/models/payroll-credit-response'; import { PayrollDeductionResponse } from '../../ca-period-content/models/payroll-deduction-response'; import { PayrollPaymentResponse } from '../../ca-period-content/models/payroll-payment-response'; import { PayrollFuelMinimalResponse } from '../../ca-period-content/models/payroll-fuel-minimal-response'; export interface ExtraPayments { bonuses: { included: Array; excluded: Array; }; credits: { included: Array; excluded: Array; }; deductions: { included: Array; excluded: Array; }; payments: { included: Array; excluded: Array; }; fuels: { included: Array; excluded: Array; }; }