Module: Zoomus::Actions::Metrics

Included in:
Client
Defined in:
lib/zoomus/actions/metrics.rb

Instance Method Summary collapse

Instance Method Details

#metrics_crc(*args) ⇒ Object



5
6
7
8
9
10
# File 'lib/zoomus/actions/metrics.rb', line 5

def metrics_crc(*args)
  options = Utils.extract_options!(args)
  Utils.require_params([:from, :to], options)
  Utils.process_datetime_params!([:from, :to], options)
  Utils.parse_response self.class.post("/metrics/crc", :query => options)
end

#metrics_meetingdetail(*args) ⇒ Object



19
20
21
22
23
# File 'lib/zoomus/actions/metrics.rb', line 19

def metrics_meetingdetail(*args)
  options = Utils.extract_options!(args)
  Utils.require_params([:meeting_id, :type], options)
  Utils.parse_response self.class.post("/metrics/meetingdetail", :query => options)
end

#metrics_meetings(*args) ⇒ Object



12
13
14
15
16
17
# File 'lib/zoomus/actions/metrics.rb', line 12

def metrics_meetings(*args)
  options = Utils.extract_options!(args)
  Utils.require_params([:from, :to, :type], options)
  Utils.process_datetime_params!([:from, :to], options)
  Utils.parse_response self.class.post("/metrics/meetings", :query => options)
end