class Comet::EmailReportConfig
def to_hash
-
(Hash)
- The complete object as a Ruby hash
def to_hash ret = {} ret['ReportType'] = @report_type ret['SummaryFrequency'] = @summary_frequency unless @time_span.nil? ret['TimeSpan'] = @time_span end ret['Filter'] = @filter @unknown_json_fields.each do |k, v| ret[k] = v end ret end