src/app/modules/acculynk/models/acculynkrow.ts
Properties |
acculynkPaymentId |
acculynkPaymentId:
|
Type : string
|
authAmount |
authAmount:
|
Type : number
|
authDate |
authDate:
|
Type : Date
|
fileName |
fileName:
|
Type : string
|
fiName |
fiName:
|
Type : string
|
id |
id:
|
Type : string
|
interchangeFee |
interchangeFee:
|
Type : number
|
isDebit |
isDebit:
|
Type : boolean
|
paymentId |
paymentId:
|
Type : string
|
sentAmount |
sentAmount:
|
Type : number
|
switchFee |
switchFee:
|
Type : number
|
timestamp |
timestamp:
|
Type : Date
|
total |
total:
|
Type : number
|
totalFees |
totalFees:
|
Type : number
|
transactionResult |
transactionResult:
|
Type : string
|
export interface IAccuLynkRow {
id: string;
paymentId: string;
acculynkPaymentId: string;
fiName: string;
fileName: string;
transactionResult: string;
authAmount: number;
sentAmount: number;
totalFees: number;
total: number;
isDebit: boolean;
authDate: Date;
switchFee: number;
interchangeFee: number;
timestamp: Date;
}
export class AccuLynkRow {
constructor(row?: IAccuLynkRow) {
if (!row) {
return;
}
this.id = row.id;
this.paymentId = row.paymentId;
this.acculynkPaymentId = row.acculynkPaymentId;
this.fiName = row.fiName;
this.fileName = row.fileName;
this.transactionResult = row.transactionResult;
this.authAmount = row.authAmount;
this.sentAmount = row.sentAmount;
this.totalFees = row.totalFees;
this.total = row.total;
this.isDebit = row.isDebit;
this.authDate = row.authDate;
this.switchFee = row.switchFee;
this.interchangeFee = row.interchangeFee;
this.timestamp = row.timestamp;
}
id: string;
paymentId: string;
acculynkPaymentId: string;
fiName: string;
fileName: string;
transactionResult: string;
authAmount: number;
sentAmount: number;
totalFees: number;
total: number;
isDebit: boolean;
authDate: Date;
switchFee: number;
interchangeFee: number;
timestamp: Date;
}