Sha256: b09db73d697f33241c5e8868ad4a979c87e6c49e3efc3542edd200763f33e132

Contents?: true

Size: 1.37 KB

Versions: 8

Compression:

Stored size: 1.37 KB

Contents

module Braintree
  class ThreeDSecureInfo
    include BaseModule

    attr_reader :acs_transaction_id
    attr_reader :cavv
    attr_reader :ds_transaction_id
    attr_reader :eci_flag
    attr_reader :enrolled
    attr_reader :liability_shift_possible
    attr_reader :liability_shifted
    attr_reader :pares_status
    attr_reader :status
    attr_reader :three_d_secure_authentication_id
    attr_reader :three_d_secure_transaction_id
    attr_reader :three_d_secure_version
    attr_reader :xid
    attr_reader :lookup
    attr_reader :authentication

    alias_method :liability_shifted?, :liability_shifted
    alias_method :liability_shift_possible?, :liability_shift_possible

    def initialize(attributes)
      set_instance_variables_from_hash attributes unless attributes.nil?
    end

    def inspect
      attr_order = [
        :acs_transaction_id,
        :authentication,
        :cavv,
        :ds_transaction_id,
        :eci_flag,
        :enrolled,
        :liability_shift_possible,
        :liability_shifted,
        :lookup,
        :pares_status,
        :status,
        :three_d_secure_authentication_id,
        :three_d_secure_transaction_id,
        :three_d_secure_version,
        :xid
      ]

      formatted_attrs = attr_order.map do |attr|
        "#{attr}: #{send(attr).inspect}"
      end
      "#<ThreeDSecureInfo #{formatted_attrs.join(", ")}>"
    end
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

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