UNPKG

cecon-interfaces

Version:
20 lines (19 loc) 604 B
import { ICompany } from '../../company'; import { EPaymentStatus, EPaymentType } from '../../general'; import { IBillingPayment } from '../interfaces'; export declare class BillingPaymentEntity implements IBillingPayment { addition: number; cancelled: number; company: Partial<ICompany>; discount: number; id: string; paymentReceiptUrl: string; paymentType: EPaymentType; status: EPaymentStatus; subtotal: number; tax: number; totalAmount: number; transactionDate: Date; transactionId: string; constructor(data?: Partial<BillingPaymentEntity>); }