Sha256: baf5811d6fa0ba5efe825720f3656ff913ed2b6d67af89d079c52cddb4b77d1c

Contents?: true

Size: 1.56 KB

Versions: 12

Compression:

Stored size: 1.56 KB

Contents

module Braintree
  class IdealPayment
    include BaseModule

    attr_reader :amount
    attr_reader :approval_url
    attr_reader :currency
    attr_reader :iban_bank_account
    attr_reader :id
    attr_reader :ideal_transaction_id
    attr_reader :issuer
    attr_reader :order_id
    attr_reader :status

    def initialize(gateway, attributes) # :nodoc:
      @gateway = gateway
      set_instance_variables_from_hash(attributes)
      @iban_bank_account = IbanBankAccount.new(attributes[:iban_bank_account]) if attributes[:iban_bank_account]
    end

    class << self
      protected :new
    end

    def self._new(*args) # :nodoc:
      self.new *args
    end

    def self.sale(ideal_payment_id, transaction_attributes)
      Configuration.gateway.transaction.sale(transaction_attributes.merge(
          :payment_method_nonce => ideal_payment_id,
          :options => { :submit_for_settlement => true }
        )
      )
    end

    def self.sale!(ideal_payment_id, transaction_attributes)
      return_object_or_raise(:transaction) { sale(ideal_payment_id, transaction_attributes) }
    end

    def self.find(ideal_payment_id)
      Configuration.gateway.ideal_payment.find(ideal_payment_id)
    end

    class IbanBankAccount
      include BaseModule
      attr_reader :account_holder_name
      attr_reader :bic
      attr_reader :description
      attr_reader :iban_account_number_last_4
      attr_reader :iban_country
      attr_reader :masked_iban

      def initialize(attributes) # :nodoc:
        set_instance_variables_from_hash(attributes)
      end
    end
  end
end

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
braintree-2.95.0 lib/braintree/ideal_payment.rb
braintree-2.94.0 lib/braintree/ideal_payment.rb
braintree-2.93.0 lib/braintree/ideal_payment.rb
braintree-2.92.0 lib/braintree/ideal_payment.rb
braintree-2.91.0 lib/braintree/ideal_payment.rb
braintree-2.90.0 lib/braintree/ideal_payment.rb
braintree-2.89.0 lib/braintree/ideal_payment.rb
braintree-2.88.0 lib/braintree/ideal_payment.rb
braintree-2.87.0 lib/braintree/ideal_payment.rb
braintree-2.86.0 lib/braintree/ideal_payment.rb
braintree-2.85.0 lib/braintree/ideal_payment.rb
braintree-2.84.0 lib/braintree/ideal_payment.rb