FraudAnalysis constructor

FraudAnalysis({
  1. String? id,
  2. int? status,
  3. String? statusDescription,
  4. String? sequence,
  5. String? sequenceCriteria,
  6. int? totalOrderAmount,
  7. int? transactionAmount,
  8. String? fingerPrintId,
  9. List<MerchantDefinedFields>? merchantDefinedFields,
  10. Cart? cart,
  11. Travel? travel,
  12. Browser? browser,
  13. Shipping? shipping,
  14. bool? captureOnLowRisk,
  15. bool? voidOnHighRisk,
  16. String? provider,
  17. bool? isRetryTransaction,
  18. dynamic fraudAnalysisReasonCode,
  19. ReplyData? replyData,
})

Implementation

FraudAnalysis(
    {this.id,
    this.status,
    this.statusDescription,
    this.sequence,
    this.sequenceCriteria,
    this.totalOrderAmount,
    this.transactionAmount,
    this.fingerPrintId,
    this.merchantDefinedFields,
    this.cart,
    this.travel,
    this.browser,
    this.shipping,
    this.captureOnLowRisk,
    this.voidOnHighRisk,
    this.provider,
    this.isRetryTransaction,
    this.fraudAnalysisReasonCode,
    this.replyData});