Class: ActiveMerchant::Billing::PaymentechOrbital::Request::ProfileManagement
- Inherits:
-
Base
- Object
- Base
- ActiveMerchant::Billing::PaymentechOrbital::Request::ProfileManagement
- Defined in:
- lib/active_merchant/billing/paymentech_orbital/request/profile_management.rb
Instance Attribute Summary collapse
-
#action ⇒ Object
Returns the value of attribute action.
-
#credit_card ⇒ Object
Returns the value of attribute credit_card.
Attributes inherited from Base
Instance Method Summary collapse
- #industry_type ⇒ Object
-
#initialize(action, credit_card = nil, options = {}) ⇒ ProfileManagement
constructor
A new instance of ProfileManagement.
- #money ⇒ Object
- #request_type ⇒ Object
- #to_s ⇒ Object
Methods inherited from Base
#address, #full_street_address, #headers, #to_a, #to_xml
Constructor Details
#initialize(action, credit_card = nil, options = {}) ⇒ ProfileManagement
Returns a new instance of ProfileManagement.
16 17 18 19 20 |
# File 'lib/active_merchant/billing/paymentech_orbital/request/profile_management.rb', line 16 def initialize(action, credit_card=nil, ={}) @action = action.to_s @credit_card = credit_card super() end |
Instance Attribute Details
#action ⇒ Object
Returns the value of attribute action.
6 7 8 |
# File 'lib/active_merchant/billing/paymentech_orbital/request/profile_management.rb', line 6 def action @action end |
#credit_card ⇒ Object
Returns the value of attribute credit_card.
6 7 8 |
# File 'lib/active_merchant/billing/paymentech_orbital/request/profile_management.rb', line 6 def credit_card @credit_card end |
Instance Method Details
#industry_type ⇒ Object
28 |
# File 'lib/active_merchant/billing/paymentech_orbital/request/profile_management.rb', line 28 def industry_type; nil; end |
#money ⇒ Object
29 |
# File 'lib/active_merchant/billing/paymentech_orbital/request/profile_management.rb', line 29 def money; nil; end |
#request_type ⇒ Object
22 |
# File 'lib/active_merchant/billing/paymentech_orbital/request/profile_management.rb', line 22 def request_type; "Profile"; end |
#to_s ⇒ Object
24 25 26 |
# File 'lib/active_merchant/billing/paymentech_orbital/request/profile_management.rb', line 24 def to_s "Profile #{@action}" end |