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.
12 13 14 |
# File 'lib/drillbit/tokens/base64.rb', line 12 def initialize(token:) self.token = token end |
Instance Attribute Details
#token ⇒ Object
Returns the value of attribute token.
10 11 12 |
# File 'lib/drillbit/tokens/base64.rb', line 10 def token @token end |
Class Method Details
Instance Method Details
#blank? ⇒ Boolean
20 21 22 |
# File 'lib/drillbit/tokens/base64.rb', line 20 def blank? false end |
#to_h ⇒ Object
24 25 26 27 28 29 30 31 32 33 |
# File 'lib/drillbit/tokens/base64.rb', line 24 def to_h [ { 'token' => token, }, { 'typ' => 'base64', }, ] end |
#valid? ⇒ Boolean
16 17 18 |
# File 'lib/drillbit/tokens/base64.rb', line 16 def valid? true end |