Sha256: aca05affbc0d0d9e6286c9b1a928259eb7ae7e434bd34a613694ee9203148fb8

Contents?: true

Size: 418 Bytes

Versions: 61

Compression:

Stored size: 418 Bytes

Contents

module Braintree
  class MerchantAccount
    class IndividualDetails
      include BaseModule

      attr_reader :first_name, :last_name, :email, :phone, :date_of_birth, :ssn_last_4,
        :address_details

      def initialize(attributes)
        set_instance_variables_from_hash attributes unless attributes.nil?
        @address_details = MerchantAccount::AddressDetails.new(@address)
      end
    end
  end
end

Version data entries

61 entries across 61 versions & 1 rubygems

Version Path
braintree-2.27.0 lib/braintree/merchant_account/individual_details.rb