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.



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

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

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



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

def api_key
  @api_key
end

#api_secretObject

Returns the value of attribute api_secret.



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

def api_secret
  @api_secret
end

#timeoutObject

Returns the value of attribute timeout.



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

def timeout
  @timeout
end