Class: Zoomus::Configuration

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



35
36
37
38
# File 'lib/zoomus.rb', line 35

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

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



33
34
35
# File 'lib/zoomus.rb', line 33

def api_key
  @api_key
end

#api_secretObject

Returns the value of attribute api_secret.



33
34
35
# File 'lib/zoomus.rb', line 33

def api_secret
  @api_secret
end

#timeoutObject

Returns the value of attribute timeout.



33
34
35
# File 'lib/zoomus.rb', line 33

def timeout
  @timeout
end