module Braintree class Transaction class GooglePayDetails include BaseModule attr_reader :bin attr_reader :card_type attr_reader :expiration_month attr_reader :expiration_year attr_reader :google_transaction_id attr_reader :image_url attr_reader :last_4 attr_reader :source_card_last_4 attr_reader :source_card_type attr_reader :source_description attr_reader :token attr_reader :virtual_card_last_4 attr_reader :virtual_card_type attr_reader :prepaid attr_reader :healthcare attr_reader :debit attr_reader :durbin_regulated attr_reader :commercial attr_reader :payroll attr_reader :issuing_bank attr_reader :country_of_issuance attr_reader :product_id attr_reader :global_id def initialize(attributes) set_instance_variables_from_hash attributes unless attributes.nil? @card_type = @virtual_card_type @last_4 = @virtual_card_last_4 end def is_network_tokenized? @is_network_tokenized end end end end