Class: Sumsub::Configuration
- Inherits:
-
Object
- Object
- Sumsub::Configuration
- Defined in:
- lib/sumsub/configuration.rb
Instance Attribute Summary collapse
-
#production ⇒ Object
Returns the value of attribute production.
-
#secret_key ⇒ Object
Returns the value of attribute secret_key.
-
#token ⇒ Object
Returns the value of attribute token.
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 |
# File 'lib/sumsub/configuration.rb', line 7 def initialize @token = nil @secret_key = nil @production = true end |
Instance Attribute Details
#production ⇒ Object
Returns the value of attribute production.
5 6 7 |
# File 'lib/sumsub/configuration.rb', line 5 def production @production end |
#secret_key ⇒ Object
Returns the value of attribute secret_key.
5 6 7 |
# File 'lib/sumsub/configuration.rb', line 5 def secret_key @secret_key end |
#token ⇒ Object
Returns the value of attribute token.
5 6 7 |
# File 'lib/sumsub/configuration.rb', line 5 def token @token end |