Sha256: 33f9b3570db0b6d51a03a2122985bbd8ed845ace4db883b0f6c6d9c352e150cd
Contents?: true
Size: 545 Bytes
Versions: 29
Compression:
Stored size: 545 Bytes
Contents
module Braintree class GrantedPaymentInstrumentUpdate include BaseModule attr_reader :grant_owner_merchant_id attr_reader :grant_recipient_merchant_id attr_reader :payment_method_nonce attr_reader :token attr_reader :updated_fields def initialize(attributes) set_instance_variables_from_hash(attributes) @payment_method_nonce = attributes[:payment_method_nonce][:nonce] end class << self protected :new def _new(*args) # :nodoc: self.new *args end end end end
Version data entries
29 entries across 29 versions & 1 rubygems