toJson method

Map<String, dynamic> toJson()

Implementation

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