import { PayrollCommissionTotalSum } from '../../ca-period-content/models//payroll-commission-total-sum'; import { PayrollCreditMinimalResponse } from '../../ca-period-content/models//payroll-credit-minimal-response'; import { PayrollDeductionMinimalResponse } from '../../ca-period-content/models//payroll-deduction-minimal-response'; import { PayrollFuelMinimalResponse } from '../../ca-period-content/models//payroll-fuel-minimal-response'; import { PayrollLoadMinimalResponse } from '../../ca-period-content/models//payroll-load-minimal-response'; import { PayrollMapLocation } from '../../ca-period-content/models//payroll-map-location'; //OPEN: owner-commission export interface PayrollOwnerResponse { id?: number; previousLoadId?: number | null; owner?: string | null; truckNumber?: string | null; truckType?: string | null; payrollNumber?: string | null; period?: string; status?: number; total?: number | null; commission?: number | null; salary?: number | null; includedDeductions?: Array | null; excludedDeductions?: Array | null; totalDeduction?: number; includedCredits?: Array | null; excludedCredits?: Array | null; totalCredits?: number; includedLoads?: Array | null; excludedLoads?: Array | null; totalFuels?: number; includedFuels?: Array | null; excludedFuels?: Array | null; mapLocations?: Array | null; sums?: PayrollCommissionTotalSum; }