Class: MixinSdk::Configuration
- Inherits:
-
Object
- Object
- MixinSdk::Configuration
- Defined in:
- lib/mixin_sdk.rb
Instance Attribute Summary collapse
-
#client_id ⇒ Object
Returns the value of attribute client_id.
-
#pin_token ⇒ Object
Returns the value of attribute pin_token.
-
#private_key ⇒ Object
Returns the value of attribute private_key.
-
#session_id ⇒ Object
Returns the value of attribute session_id.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
16 17 18 19 20 21 |
# File 'lib/mixin_sdk.rb', line 16 def initialize @client_id = '' @session_id = '' @private_key = '' @pin_token = '' end |
Instance Attribute Details
#client_id ⇒ Object
Returns the value of attribute client_id.
14 15 16 |
# File 'lib/mixin_sdk.rb', line 14 def client_id @client_id end |
#pin_token ⇒ Object
Returns the value of attribute pin_token.
14 15 16 |
# File 'lib/mixin_sdk.rb', line 14 def pin_token @pin_token end |
#private_key ⇒ Object
Returns the value of attribute private_key.
14 15 16 |
# File 'lib/mixin_sdk.rb', line 14 def private_key @private_key end |
#session_id ⇒ Object
Returns the value of attribute session_id.
14 15 16 |
# File 'lib/mixin_sdk.rb', line 14 def session_id @session_id end |