File

src/app/modules/acculynk/models/acculynkrow.ts

Index

Properties

Properties

acculynkPaymentId
acculynkPaymentId: string
Type : string
authAmount
authAmount: number
Type : number
authDate
authDate: Date
Type : Date
fileName
fileName: string
Type : string
fiName
fiName: string
Type : string
id
id: string
Type : string
interchangeFee
interchangeFee: number
Type : number
isDebit
isDebit: boolean
Type : boolean
paymentId
paymentId: string
Type : string
sentAmount
sentAmount: number
Type : number
switchFee
switchFee: number
Type : number
timestamp
timestamp: Date
Type : Date
total
total: number
Type : number
totalFees
totalFees: number
Type : number
transactionResult
transactionResult: string
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;
}

result-matching ""

    No results matching ""