Class: Zoom::Configuration
- Inherits:
-
Object
- Object
- Zoom::Configuration
- Defined in:
- lib/zoom_rb.rb
Instance Attribute Summary collapse
-
#access_token ⇒ Object
Returns the value of attribute access_token.
-
#api_key ⇒ Object
Returns the value of attribute api_key.
-
#api_secret ⇒ Object
Returns the value of attribute api_secret.
-
#timeout ⇒ Object
Returns the value of attribute timeout.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
51 52 53 54 55 |
# File 'lib/zoom_rb.rb', line 51 def initialize @api_key = @api_secret = 'xxx' @access_token = nil @timeout = 15 end |
Instance Attribute Details
#access_token ⇒ Object
Returns the value of attribute access_token.
49 50 51 |
# File 'lib/zoom_rb.rb', line 49 def access_token @access_token end |
#api_key ⇒ Object
Returns the value of attribute api_key.
49 50 51 |
# File 'lib/zoom_rb.rb', line 49 def api_key @api_key end |
#api_secret ⇒ Object
Returns the value of attribute api_secret.
49 50 51 |
# File 'lib/zoom_rb.rb', line 49 def api_secret @api_secret end |
#timeout ⇒ Object
Returns the value of attribute timeout.
49 50 51 |
# File 'lib/zoom_rb.rb', line 49 def timeout @timeout end |