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.



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

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

Instance Attribute Details

#api_keyObject

Returns the value of attribute api_key.



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

def api_key
  @api_key
end

#api_secretObject

Returns the value of attribute api_secret.



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

def api_secret
  @api_secret
end

#timeoutObject

Returns the value of attribute timeout.



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

def timeout
  @timeout
end