Class: Auth0::Verifier::Handlers::Base
- Inherits:
-
Object
- Object
- Auth0::Verifier::Handlers::Base
- Defined in:
- lib/auth0/verifier/handlers/base.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#config ⇒ Object
readonly
Returns the value of attribute config.
-
#token ⇒ Object
readonly
Returns the value of attribute token.
Instance Method Summary collapse
-
#initialize(token:, config:) ⇒ Base
constructor
A new instance of Base.
Constructor Details
#initialize(token:, config:) ⇒ Base
Returns a new instance of Base.
9 10 11 12 |
# File 'lib/auth0/verifier/handlers/base.rb', line 9 def initialize(token:, config:) @token = token @config = config end |
Instance Attribute Details
#config ⇒ Object (readonly)
Returns the value of attribute config.
7 8 9 |
# File 'lib/auth0/verifier/handlers/base.rb', line 7 def config @config end |
#token ⇒ Object (readonly)
Returns the value of attribute token.
7 8 9 |
# File 'lib/auth0/verifier/handlers/base.rb', line 7 def token @token end |