import { AccountBalanceHistoryTypes } from '../enums'; import { BaseModel } from './BaseModel'; import { Payment } from './Payment'; export interface AccountBalanceHistory extends BaseModel { companyId?: string; workerId?: string; previousBalance?: number; currentBalance?: number; modifier?: number; type?: AccountBalanceHistoryTypes; payment?: Payment; provisionedCredit?: number; entityId?: string; observations?: string; }