toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final columns = this.columns;
  final downloadFormat = this.downloadFormat;
  final filters = this.filters;
  final includeDeletedEntities = this.includeDeletedEntities;
  final includeRemovedEntities = this.includeRemovedEntities;
  final maxRowsPerFile = this.maxRowsPerFile;
  final orderBy = this.orderBy;
  final reportScope = this.reportScope;
  final reportType = this.reportType;
  final rowCount = this.rowCount;
  final startRow = this.startRow;
  final statisticsCurrency = this.statisticsCurrency;
  final timeRange = this.timeRange;
  final verifySingleTimeZone = this.verifySingleTimeZone;
  return {
    'columns': ?columns,
    'downloadFormat': ?downloadFormat,
    'filters': ?filters,
    'includeDeletedEntities': ?includeDeletedEntities,
    'includeRemovedEntities': ?includeRemovedEntities,
    'maxRowsPerFile': ?maxRowsPerFile,
    'orderBy': ?orderBy,
    'reportScope': ?reportScope,
    'reportType': ?reportType,
    'rowCount': ?rowCount,
    'startRow': ?startRow,
    'statisticsCurrency': ?statisticsCurrency,
    'timeRange': ?timeRange,
    'verifySingleTimeZone': ?verifySingleTimeZone,
  };
}