class Minfraud::Model::Warning

Warning about the minFraud request.

Although more codes may be added in the future, the current warning codes are:

Attributes

code[R]

This value is a machine-readable code identifying the warning.

@return [String]

input_pointer[R]

A JSON Pointer to the input field that the warning is associated with. For instance, if the warning was about the billing city, this would be '/billing/city'. If it was for the price in the second shopping cart item, it would be '/shopping_cart/1/price'.

@return [String, nil]

warning[R]

This property provides a human-readable explanation of the warning. The description may change at any time and should not be matched against.

@return [String]

Public Class Methods

new(record) click to toggle source

@!visibility private

Calls superclass method Minfraud::Model::Abstract::new
# File lib/minfraud/model/warning.rb, line 54
def initialize(record)
  super(record)

  @code          = get('code')
  @warning       = get('warning')
  @input_pointer = get('input_pointer')
end