Sha256: 7011252fe22b5a829085e2822ec6c277b0b5bfe241eb1a7c6ba28cc8f01c6017
Contents?: true
Size: 1.46 KB
Versions: 2
Compression:
Stored size: 1.46 KB
Contents
module Braintree class Transaction # NEXT_MAJOR_VERSION Remove this class. # DEPRECATED The Masterpass Card payment method is deprecated. class MasterpassCardDetails # :nodoc: include BaseModule attr_reader :bin attr_reader :card_type attr_reader :cardholder_name attr_reader :commercial attr_reader :country_of_issuance attr_reader :customer_location attr_reader :debit attr_reader :durbin_regulated attr_reader :expiration_month attr_reader :expiration_year attr_reader :healthcare attr_reader :image_url attr_reader :issuing_bank attr_reader :last_4 attr_reader :payroll attr_reader :prepaid attr_reader :product_id attr_reader :token def initialize(attributes) set_instance_variables_from_hash attributes unless attributes.nil? end def expiration_date "#{expiration_month}/#{expiration_year}" end def inspect attr_order = [:token, :bin, :last_4, :card_type, :expiration_date, :cardholder_name, :customer_location, :prepaid, :healthcare, :durbin_regulated, :debit, :commercial, :payroll, :product_id, :country_of_issuance, :issuing_bank, :image_url] formatted_attrs = attr_order.map do |attr| "#{attr}: #{send(attr).inspect}" end "#<#{formatted_attrs.join(", ")}>" end def masked_number "#{bin}******#{last_4}" end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
braintree-2.104.1 | lib/braintree/transaction/masterpass_card_details.rb |
braintree-2.104.0 | lib/braintree/transaction/masterpass_card_details.rb |