Sha256: dfb37a0e450b0f5c63156857bcf1b510e28fa5a9ea452b8d21b78f289983ced6

Contents?: true

Size: 947 Bytes

Versions: 8

Compression:

Stored size: 947 Bytes

Contents

module Braintree
  class RiskData
    include BaseModule

    attr_reader :customer_device_id
    attr_reader :customer_location_zip
    attr_reader :customer_tenure
    attr_reader :decision
    attr_reader :decision_reasons
    attr_reader :device_data_captured
    attr_reader :fraud_service_provider
    attr_reader :id
    attr_reader :liability_shift
    attr_reader :transaction_risk_score

    def initialize(attributes)
      set_instance_variables_from_hash attributes unless attributes.nil?
      @liability_shift = LiabilityShift.new(attributes[:liability_shift]) if attributes[:liability_shift]
    end

    def inspect
      attr_order = [:id, :decision, :decision_reasons, :device_data_captured, :fraud_service_provider, :liability_shift, :transaction_risk_score]
      formatted_attrs = attr_order.map do |attr|
        "#{attr}: #{send(attr).inspect}"
      end
      "#<RiskData #{formatted_attrs.join(", ")}>"
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
braintree-4.23.0 lib/braintree/risk_data.rb
braintree-4.22.0 lib/braintree/risk_data.rb
braintree-4.21.0 lib/braintree/risk_data.rb
braintree-4.20.0 lib/braintree/risk_data.rb
braintree-4.19.0 lib/braintree/risk_data.rb
braintree-4.18.0 lib/braintree/risk_data.rb
braintree-4.17.0 lib/braintree/risk_data.rb
braintree-4.16.0 lib/braintree/risk_data.rb