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.
50 51 52 53 54 |
# File 'lib/zoom_rb.rb', line 50 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.
48 49 50 |
# File 'lib/zoom_rb.rb', line 48 def access_token @access_token end |
#api_key ⇒ Object
Returns the value of attribute api_key.
48 49 50 |
# File 'lib/zoom_rb.rb', line 48 def api_key @api_key end |
#api_secret ⇒ Object
Returns the value of attribute api_secret.
48 49 50 |
# File 'lib/zoom_rb.rb', line 48 def api_secret @api_secret end |
#timeout ⇒ Object
Returns the value of attribute timeout.
48 49 50 |
# File 'lib/zoom_rb.rb', line 48 def timeout @timeout end |