Class: Minfraud::Components::Report::Transaction

Inherits:
Base
  • Object
show all
Includes:
Enum
Defined in:
lib/minfraud/components/report/transaction.rb

Overview

Contains the fields used in the Report Transaction API.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Enum

included

Methods inherited from Base

#to_json

Constructor Details

#initialize(params = {}) ⇒ Transaction

Returns a new instance of Transaction.

Parameters:

  • params (Hash) (defaults to: {})

    Hash of parameters. Each key/value should correspond to one of the available attributes.



68
69
70
71
72
73
74
75
76
# File 'lib/minfraud/components/report/transaction.rb', line 68

def initialize(params = {})
  @ip_address      = params[:ip_address]
  @chargeback_code = params[:chargeback_code]
  @maxmind_id      = params[:maxmind_id]
  @minfraud_id     = params[:minfraud_id]
  @notes           = params[:notes]
  @transaction_id  = params[:transaction_id]
  self.tag         = params[:tag]
end

Instance Attribute Details

#chargeback_codeString?

A string which is provided by your payment processor indicating the reason for the chargeback.

Returns:

  • (String, nil)


33
34
35
# File 'lib/minfraud/components/report/transaction.rb', line 33

def chargeback_code
  @chargeback_code
end

#ip_addressString?

The IP address of the customer placing the order. This should be passed as a string like “152.216.7.110”.

Returns:

  • (String, nil)


16
17
18
# File 'lib/minfraud/components/report/transaction.rb', line 16

def ip_address
  @ip_address
end

#maxmind_idString?

A unique eight character string identifying a minFraud Standard or Premium request. These IDs are returned in the maxmindID field of a response for a successful minFraud request. This field is not required, but you are encouraged to provide it, if possible.

Returns:

  • (String, nil)


41
42
43
# File 'lib/minfraud/components/report/transaction.rb', line 41

def maxmind_id
  @maxmind_id
end

#minfraud_idString?

A UUID that identifies a minFraud Score, minFraud Insights, or minFraud Factors request. This ID is returned at /id in the response. This field is not required, but you are encouraged to provide it if the request was made to one of these services.

Returns:

  • (String, nil)


49
50
51
# File 'lib/minfraud/components/report/transaction.rb', line 49

def minfraud_id
  @minfraud_id
end

#notesString?

Your notes on the fraud tag associated with the transaction. We manually review many reported transactions to improve our scoring for you so any additional details to help us understand context are helpful.

Returns:

  • (String, nil)


57
58
59
# File 'lib/minfraud/components/report/transaction.rb', line 57

def notes
  @notes
end

#tagSymbol?

A symbol indicating the likelihood that a transaction may be fraudulent.

This may be one of :chargeback, :not_fraud, :spam_or_abuse, or :suspected_fraud.

Returns:

  • (Symbol, nil)


27
# File 'lib/minfraud/components/report/transaction.rb', line 27

enum_accessor :tag, %i[chargeback not_fraud spam_or_abuse suspected_fraud]

#transaction_idString?

The transaction ID you originally passed to minFraud. This field is not required, but you are encouraged to provide it or the transaction’s maxmind_id or minfraud_id.

Returns:

  • (String, nil)


64
65
66
# File 'lib/minfraud/components/report/transaction.rb', line 64

def transaction_id
  @transaction_id
end