Class: Dolla::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/dolla/configuration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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_emailObject

Returns the value of attribute admin_email.



3
4
5
# File 'lib/dolla/configuration.rb', line 3

def admin_email
  @admin_email
end

#business_unitObject

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_codeObject

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

#cancellationObject

Returns the value of attribute cancellation.



3
4
5
# File 'lib/dolla/configuration.rb', line 3

def cancellation
  @cancellation
end

#client_idObject

Returns the value of attribute client_id.



3
4
5
# File 'lib/dolla/configuration.rb', line 3

def client_id
  @client_id
end

#currencyObject

Returns the value of attribute currency.



3
4
5
# File 'lib/dolla/configuration.rb', line 3

def currency
  @currency
end

#hmac_keyObject

Returns the value of attribute hmac_key.



3
4
5
# File 'lib/dolla/configuration.rb', line 3

def hmac_key
  @hmac_key
end

#paymentObject

Returns the value of attribute payment.



3
4
5
# File 'lib/dolla/configuration.rb', line 3

def payment
  @payment
end

#payment_gateway_codeObject

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

#platformObject

Returns the value of attribute platform.



3
4
5
# File 'lib/dolla/configuration.rb', line 3

def platform
  @platform
end

#rijndael_keyObject

Returns the value of attribute rijndael_key.



3
4
5
# File 'lib/dolla/configuration.rb', line 3

def rijndael_key
  @rijndael_key
end

#transaction_typeObject

Returns the value of attribute transaction_type.



3
4
5
# File 'lib/dolla/configuration.rb', line 3

def transaction_type
  @transaction_type
end