Class: Alfabank::Configuration
- Inherits:
-
Object
- Object
- Alfabank::Configuration
- Defined in:
- lib/alfabank/configuration.rb
Class Attribute Summary collapse
-
.binding_password ⇒ Object
Returns the value of attribute binding_password.
-
.binding_username ⇒ Object
Returns the value of attribute binding_username.
-
.currency ⇒ Object
Returns the value of attribute currency.
-
.language ⇒ Object
Returns the value of attribute language.
-
.mode ⇒ Object
Returns the value of attribute mode.
-
.order_number_prefix ⇒ Object
Returns the value of attribute order_number_prefix.
-
.password ⇒ Object
Returns the value of attribute password.
-
.return_url ⇒ Object
Returns the value of attribute return_url.
-
.username ⇒ Object
Returns the value of attribute username.
Class Method Summary collapse
Class Attribute Details
.binding_password ⇒ Object
Returns the value of attribute binding_password.
6 7 8 |
# File 'lib/alfabank/configuration.rb', line 6 def binding_password @binding_password end |
.binding_username ⇒ Object
Returns the value of attribute binding_username.
6 7 8 |
# File 'lib/alfabank/configuration.rb', line 6 def binding_username @binding_username end |
.currency ⇒ Object
Returns the value of attribute currency.
5 6 7 |
# File 'lib/alfabank/configuration.rb', line 5 def currency @currency end |
.language ⇒ Object
Returns the value of attribute language.
4 5 6 |
# File 'lib/alfabank/configuration.rb', line 4 def language @language end |
.mode ⇒ Object
Returns the value of attribute mode.
5 6 7 |
# File 'lib/alfabank/configuration.rb', line 5 def mode @mode end |
.order_number_prefix ⇒ Object
Returns the value of attribute order_number_prefix.
5 6 7 |
# File 'lib/alfabank/configuration.rb', line 5 def order_number_prefix @order_number_prefix end |
.password ⇒ Object
Returns the value of attribute password.
4 5 6 |
# File 'lib/alfabank/configuration.rb', line 4 def password @password end |
.return_url ⇒ Object
Returns the value of attribute return_url.
4 5 6 |
# File 'lib/alfabank/configuration.rb', line 4 def return_url @return_url end |
.username ⇒ Object
Returns the value of attribute username.
4 5 6 |
# File 'lib/alfabank/configuration.rb', line 4 def username @username end |
Class Method Details
.binding_credentials ⇒ Object
8 9 10 11 12 13 |
# File 'lib/alfabank/configuration.rb', line 8 def binding_credentials { userName: binding_username, password: binding_password } end |
.common_credentials ⇒ Object
15 16 17 18 19 20 |
# File 'lib/alfabank/configuration.rb', line 15 def common_credentials { userName: username, password: password } end |