Class: PaymentGateway::ForAll::Configuration
- Inherits:
-
Object
- Object
- PaymentGateway::ForAll::Configuration
- Defined in:
- lib/payment_gateway/for_all.rb
Instance Attribute Summary collapse
-
#environment ⇒ Object
Returns the value of attribute environment.
-
#merchant_key ⇒ Object
Returns the value of attribute merchant_key.
-
#public_key ⇒ Object
Returns the value of attribute public_key.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
24 25 26 27 28 |
# File 'lib/payment_gateway/for_all.rb', line 24 def initialize @public_key = nil @merchant_key = nil @environment = nil end |
Instance Attribute Details
#environment ⇒ Object
Returns the value of attribute environment.
22 23 24 |
# File 'lib/payment_gateway/for_all.rb', line 22 def environment @environment end |
#merchant_key ⇒ Object
Returns the value of attribute merchant_key.
21 22 23 |
# File 'lib/payment_gateway/for_all.rb', line 21 def merchant_key @merchant_key end |
#public_key ⇒ Object
Returns the value of attribute public_key.
20 21 22 |
# File 'lib/payment_gateway/for_all.rb', line 20 def public_key @public_key end |