module Zoomus::Actions::Metrics
Public Instance Methods
metrics_crc(*args)
click to toggle source
# 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)
click to toggle source
# 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)
click to toggle source
# 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