toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (csvDelimiter != null) 'csvDelimiter': csvDelimiter!,
  if (dimensions != null) 'dimensions': dimensions!,
  if (envgroupHostname != null) 'envgroupHostname': envgroupHostname!,
  if (filter != null) 'filter': filter!,
  if (groupByTimeUnit != null) 'groupByTimeUnit': groupByTimeUnit!,
  if (limit != null) 'limit': limit!,
  if (metrics != null) 'metrics': metrics!,
  if (name != null) 'name': name!,
  if (outputFormat != null) 'outputFormat': outputFormat!,
  if (reportDefinitionId != null) 'reportDefinitionId': reportDefinitionId!,
  if (timeRange != null) 'timeRange': timeRange!,
};