cecon-interfaces
Version:
Interfaces de Projetos Cecon
18 lines (17 loc) • 464 B
TypeScript
import { ICompany } from '../../company';
import { EPaymentStatus, EPaymentType } from '../../general';
export interface 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;
}