toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final copy = this.copy;
  final dryRun = this.dryRun;
  final extract = this.extract;
  final jobTimeoutMs = this.jobTimeoutMs;
  final jobType = this.jobType;
  final labels = this.labels;
  final load = this.load;
  final maxSlots = this.maxSlots;
  final query = this.query;
  final reservation = this.reservation;
  return {
    'copy': ?copy,
    'dryRun': ?dryRun,
    'extract': ?extract,
    'jobTimeoutMs': ?jobTimeoutMs,
    'jobType': ?jobType,
    'labels': ?labels,
    'load': ?load,
    'maxSlots': ?maxSlots,
    'query': ?query,
    'reservation': ?reservation,
  };
}