Class: ActiveMerchant::Billing::PaymentMethodDetails
- Inherits:
-
Object
- Object
- ActiveMerchant::Billing::PaymentMethodDetails
- Defined in:
- lib/active_merchant/billing/gateways/blue_snap.rb
Instance Attribute Summary collapse
-
#payment_method ⇒ Object
readonly
Returns the value of attribute payment_method.
-
#payment_method_type ⇒ Object
readonly
Returns the value of attribute payment_method_type.
-
#vaulted_shopper_id ⇒ Object
readonly
Returns the value of attribute vaulted_shopper_id.
Instance Method Summary collapse
- #alt_transaction? ⇒ Boolean
- #check? ⇒ Boolean
-
#initialize(payment_method = nil) ⇒ PaymentMethodDetails
constructor
A new instance of PaymentMethodDetails.
- #resource_url ⇒ Object
- #root_element ⇒ Object
Constructor Details
#initialize(payment_method = nil) ⇒ PaymentMethodDetails
Returns a new instance of PaymentMethodDetails.
575 576 577 578 579 |
# File 'lib/active_merchant/billing/gateways/blue_snap.rb', line 575 def initialize(payment_method = nil) @payment_method = payment_method @payment_method_type = nil parse(payment_method) end |
Instance Attribute Details
#payment_method ⇒ Object (readonly)
Returns the value of attribute payment_method.
573 574 575 |
# File 'lib/active_merchant/billing/gateways/blue_snap.rb', line 573 def payment_method @payment_method end |
#payment_method_type ⇒ Object (readonly)
Returns the value of attribute payment_method_type.
573 574 575 |
# File 'lib/active_merchant/billing/gateways/blue_snap.rb', line 573 def payment_method_type @payment_method_type end |
#vaulted_shopper_id ⇒ Object (readonly)
Returns the value of attribute vaulted_shopper_id.
573 574 575 |
# File 'lib/active_merchant/billing/gateways/blue_snap.rb', line 573 def vaulted_shopper_id @vaulted_shopper_id end |
Instance Method Details
#alt_transaction? ⇒ Boolean
585 586 587 |
# File 'lib/active_merchant/billing/gateways/blue_snap.rb', line 585 def alt_transaction? check? end |
#check? ⇒ Boolean
581 582 583 |
# File 'lib/active_merchant/billing/gateways/blue_snap.rb', line 581 def check? @payment_method.is_a?(Check) || @payment_method_type == 'check' end |
#resource_url ⇒ Object
593 594 595 |
# File 'lib/active_merchant/billing/gateways/blue_snap.rb', line 593 def resource_url alt_transaction? ? 'alt-transactions' : 'transactions' end |
#root_element ⇒ Object
589 590 591 |
# File 'lib/active_merchant/billing/gateways/blue_snap.rb', line 589 def root_element alt_transaction? ? 'alt-transaction' : 'card-transaction' end |