Sha256: be0ae32acc522a667edd02d1191d8d3a6be4f392241dec887fb1a005b28c1268
Contents?: true
Size: 408 Bytes
Versions: 10
Compression:
Stored size: 408 Bytes
Contents
module Braintree class EnrichedCustomerData include BaseModule attr_reader :fields_updated attr_reader :profile_data def initialize(attributes) set_instance_variables_from_hash(attributes) @profile_data = VenmoProfileData._new(attributes[:profile_data]) end class << self protected :new end def self._new(*args) self.new(*args) end end end
Version data entries
10 entries across 10 versions & 1 rubygems