Sha256: 1e1959edc976d1cf5fda9fccbde60b4a0ac1b5183dfee69141c9aac2fb9fa25e
Contents?: true
Size: 1.24 KB
Versions: 2
Compression:
Stored size: 1.24 KB
Contents
module Braintree class PaymentMethodNonce include BaseModule # :nodoc: def self.create(*args) Configuration.gateway.payment_method_nonce.create(*args) end def self.create!(*args) Configuration.gateway.payment_method_nonce.create!(*args) end def self.find(*args) Configuration.gateway.payment_method_nonce.find(*args) end attr_reader :bin_data attr_reader :details attr_reader :nonce attr_reader :three_d_secure_info attr_reader :type attr_reader :authentication_insight def initialize(gateway, attributes) # :nodoc: @gateway = gateway @nonce = attributes.fetch(:nonce) @type = attributes.fetch(:type) @details = PaymentMethodNonceDetails.new(attributes[:details]) if attributes[:details] @authentication_insight = attributes.fetch(:authentication_insight, nil) @three_d_secure_info = ThreeDSecureInfo.new(attributes[:three_d_secure_info]) if attributes[:three_d_secure_info] @bin_data = BinData.new(attributes[:bin_data]) if attributes[:bin_data] end def to_s # :nodoc: nonce end class << self protected :new end def self._new(gateway, attributes) # :nodoc: new(gateway, attributes) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
braintree-4.1.0 | lib/braintree/payment_method_nonce.rb |
braintree-4.0.0 | lib/braintree/payment_method_nonce.rb |