Class: Zoom::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/zoom_rb.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

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_tokenObject

Returns the value of attribute access_token.



48
49
50
# File 'lib/zoom_rb.rb', line 48

def access_token
  @access_token
end

#api_keyObject

Returns the value of attribute api_key.



48
49
50
# File 'lib/zoom_rb.rb', line 48

def api_key
  @api_key
end

#api_secretObject

Returns the value of attribute api_secret.



48
49
50
# File 'lib/zoom_rb.rb', line 48

def api_secret
  @api_secret
end

#timeoutObject

Returns the value of attribute timeout.



48
49
50
# File 'lib/zoom_rb.rb', line 48

def timeout
  @timeout
end