Method: Wework::Api::Suite#initialize

Defined in:
lib/wework/api/suite.rb

#initialize(options = {}) ⇒ Suite

Returns a new instance of Suite.



12
13
14
15
16
17
18
# File 'lib/wework/api/suite.rb', line 12

def initialize(options={})
  @suite_id = options.delete(:suite_id)
  @suite_secret = options.delete(:suite_secret)
  @token = @suite_token = options.delete(:suite_token)
  @encoding_aes_key = options.delete(:encoding_aes_key)
  super(options)
end