Class: Sumsub::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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

#productionObject

Returns the value of attribute production.



5
6
7
# File 'lib/sumsub/configuration.rb', line 5

def production
  @production
end

#secret_keyObject

Returns the value of attribute secret_key.



5
6
7
# File 'lib/sumsub/configuration.rb', line 5

def secret_key
  @secret_key
end

#tokenObject

Returns the value of attribute token.



5
6
7
# File 'lib/sumsub/configuration.rb', line 5

def token
  @token
end