toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final csvDelimiter = this.csvDelimiter;
final dimensions = this.dimensions;
final envgroupHostname = this.envgroupHostname;
final filter = this.filter;
final groupByTimeUnit = this.groupByTimeUnit;
final limit = this.limit;
final metrics = this.metrics;
final name = this.name;
final outputFormat = this.outputFormat;
final reportDefinitionId = this.reportDefinitionId;
final timeRange = this.timeRange;
return {
'csvDelimiter': ?csvDelimiter,
'dimensions': ?dimensions,
'envgroupHostname': ?envgroupHostname,
'filter': ?filter,
'groupByTimeUnit': ?groupByTimeUnit,
'limit': ?limit,
'metrics': ?metrics,
'name': ?name,
'outputFormat': ?outputFormat,
'reportDefinitionId': ?reportDefinitionId,
'timeRange': ?timeRange,
};
}