Class: PaymentGateway::ForAll::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/payment_gateway/for_all.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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

#environmentObject

Returns the value of attribute environment.



22
23
24
# File 'lib/payment_gateway/for_all.rb', line 22

def environment
  @environment
end

#merchant_keyObject

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_keyObject

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