Class: Dolla::Configuration
- Inherits:
-
Object
- Object
- Dolla::Configuration
- Defined in:
- lib/dolla/configuration.rb
Instance Attribute Summary collapse
-
#admin_email ⇒ Object
Returns the value of attribute admin_email.
-
#business_unit ⇒ Object
Returns the value of attribute business_unit.
-
#cancel_gateway_code ⇒ Object
Returns the value of attribute cancel_gateway_code.
-
#cancellation ⇒ Object
Returns the value of attribute cancellation.
-
#client_id ⇒ Object
Returns the value of attribute client_id.
-
#currency ⇒ Object
Returns the value of attribute currency.
-
#hmac_key ⇒ Object
Returns the value of attribute hmac_key.
-
#payment ⇒ Object
Returns the value of attribute payment.
-
#payment_gateway_code ⇒ Object
Returns the value of attribute payment_gateway_code.
-
#platform ⇒ Object
Returns the value of attribute platform.
-
#rijndael_key ⇒ Object
Returns the value of attribute rijndael_key.
-
#transaction_type ⇒ Object
Returns the value of attribute transaction_type.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/dolla/configuration.rb', line 7 def initialize @business_unit = nil @payment_gateway_code = nil @cancel_gateway_code = nil @currency = nil @client_id = nil @admin_email = nil @transaction_type = nil @platform = nil @payment = nil @cancellation = nil @rijndael_key = nil @hmac_key = nil end |
Instance Attribute Details
#admin_email ⇒ Object
Returns the value of attribute admin_email.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def admin_email @admin_email end |
#business_unit ⇒ Object
Returns the value of attribute business_unit.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def business_unit @business_unit end |
#cancel_gateway_code ⇒ Object
Returns the value of attribute cancel_gateway_code.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def cancel_gateway_code @cancel_gateway_code end |
#cancellation ⇒ Object
Returns the value of attribute cancellation.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def cancellation @cancellation end |
#client_id ⇒ Object
Returns the value of attribute client_id.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def client_id @client_id end |
#currency ⇒ Object
Returns the value of attribute currency.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def currency @currency end |
#hmac_key ⇒ Object
Returns the value of attribute hmac_key.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def hmac_key @hmac_key end |
#payment ⇒ Object
Returns the value of attribute payment.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def payment @payment end |
#payment_gateway_code ⇒ Object
Returns the value of attribute payment_gateway_code.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def payment_gateway_code @payment_gateway_code end |
#platform ⇒ Object
Returns the value of attribute platform.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def platform @platform end |
#rijndael_key ⇒ Object
Returns the value of attribute rijndael_key.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def rijndael_key @rijndael_key end |
#transaction_type ⇒ Object
Returns the value of attribute transaction_type.
3 4 5 |
# File 'lib/dolla/configuration.rb', line 3 def transaction_type @transaction_type end |