Class: Zoom::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



45
46
47
48
# File 'lib/zoom.rb', line 45

def initialize
  @api_key = @api_secret = 'xxx'
  @timeout = 15
end

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



43
44
45
# File 'lib/zoom.rb', line 43

def api_key
  @api_key
end

#api_secretObject

Returns the value of attribute api_secret.



43
44
45
# File 'lib/zoom.rb', line 43

def api_secret
  @api_secret
end

#timeoutObject

Returns the value of attribute timeout.



43
44
45
# File 'lib/zoom.rb', line 43

def timeout
  @timeout
end