Sha256: 5a14001aadbf6b4beb91cc68be926a6c0e731c0791a69eec6f84f14069b4622d
Contents?: true
Size: 504 Bytes
Versions: 14
Compression:
Stored size: 504 Bytes
Contents
module Braintree class UnknownPaymentMethod include BaseModule attr_reader :token def initialize(gateway, attributes) @gateway = gateway nested_attributes = attributes[attributes.keys.first] set_instance_variables_from_hash(nested_attributes) end def default? @default end def image_url "https://assets.braintreegateway.com/payment_method_logo/unknown.png" end def self._new(*args) # :nodoc: self.new *args end end end
Version data entries
14 entries across 14 versions & 1 rubygems