Class: Drillbit::Tokens::Base64
- Inherits:
-
Object
- Object
- Drillbit::Tokens::Base64
- Defined in:
- lib/drillbit/tokens/base64.rb
Instance Attribute Summary collapse
-
#token ⇒ Object
Returns the value of attribute token.
Class Method Summary collapse
Instance Method Summary collapse
- #blank? ⇒ Boolean
-
#initialize(token:) ⇒ Base64
constructor
A new instance of Base64.
- #to_h ⇒ Object
- #valid? ⇒ Boolean
Constructor Details
#initialize(token:) ⇒ Base64
Returns a new instance of Base64.
11 12 13 |
# File 'lib/drillbit/tokens/base64.rb', line 11 def initialize(token:) self.token = token end |
Instance Attribute Details
#token ⇒ Object
Returns the value of attribute token.
9 10 11 |
# File 'lib/drillbit/tokens/base64.rb', line 9 def token @token end |
Class Method Details
Instance Method Details
#blank? ⇒ Boolean
19 20 21 |
# File 'lib/drillbit/tokens/base64.rb', line 19 def blank? false end |
#to_h ⇒ Object
23 24 25 26 27 28 29 30 31 32 |
# File 'lib/drillbit/tokens/base64.rb', line 23 def to_h [ { 'token' => token, }, { 'typ' => 'base64', }, ] end |
#valid? ⇒ Boolean
15 16 17 |
# File 'lib/drillbit/tokens/base64.rb', line 15 def valid? true end |