module Zoomus::Actions::Report
Public Instance Methods
report_getaccountreport(*args)
click to toggle source
# File lib/zoomus/actions/report.rb, line 5 def report_getaccountreport(*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("/report/getaccountreport", :query => options) end
report_getdailyreport(*args)
click to toggle source
# File lib/zoomus/actions/report.rb, line 19 def report_getdailyreport(*args) options = Utils.extract_options!(args) Utils.require_params([:year, :month],options) Utils.parse_response self.class.post("/report/getdailyreport", :query => options) end
report_getuserreport(*args)
click to toggle source
# File lib/zoomus/actions/report.rb, line 12 def report_getuserreport(*args) options = Utils.extract_options!(args) Utils.require_params([:user_id, :from, :to], options) Utils.process_datetime_params!([:from, :to], options) Utils.parse_response self.class.post("/report/getuserreport", :query => options) end