UNPKG

@tomei/finance

Version:

NestJS package for finance module

23 lines 634 B
import { PaymentType, PaymentStatus } from '../../enum'; export declare class IPaymentAttr { PaymentId: string; PaymentType: PaymentType; PaymentDate: Date; Description: string; Currency: string; Amount: number; Status: PaymentStatus; ReceivedBy?: string; IssuedBy?: string; RelatedObjectId?: string; RelatedObjectType?: string; ReceiptDocNo?: string; Remarks?: string; UpdatedAt: Date; UpdatedBy: string; AccSystemRefId?: string; PostedToAccSystemYN: string; PostedById?: string; PostedDateTime?: Date; } //# sourceMappingURL=payment-attr.interface.d.ts.map