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.



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_tokenObject

Returns the value of attribute access_token.



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

def access_token
  @access_token
end

#api_keyObject

Returns the value of attribute api_key.



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

def api_key
  @api_key
end

#api_secretObject

Returns the value of attribute api_secret.



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

def api_secret
  @api_secret
end

#timeoutObject

Returns the value of attribute timeout.



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

def timeout
  @timeout
end