toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowQueueing = this.allowQueueing;
  final catchUp = this.catchUp;
  final createNotebookExecutionJobRequest =
      this.createNotebookExecutionJobRequest;
  final createPipelineJobRequest = this.createPipelineJobRequest;
  final createTime = this.createTime;
  final cron = this.cron;
  final displayName = this.displayName;
  final endTime = this.endTime;
  final lastPauseTime = this.lastPauseTime;
  final lastResumeTime = this.lastResumeTime;
  final lastScheduledRunResponse = this.lastScheduledRunResponse;
  final maxConcurrentRunCount = this.maxConcurrentRunCount;
  final maxRunCount = this.maxRunCount;
  final name = this.name;
  final nextRunTime = this.nextRunTime;
  final startTime = this.startTime;
  final startedRunCount = this.startedRunCount;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'allowQueueing': ?allowQueueing,
    'catchUp': ?catchUp,
    'createNotebookExecutionJobRequest': ?createNotebookExecutionJobRequest,
    'createPipelineJobRequest': ?createPipelineJobRequest,
    'createTime': ?createTime,
    'cron': ?cron,
    'displayName': ?displayName,
    'endTime': ?endTime,
    'lastPauseTime': ?lastPauseTime,
    'lastResumeTime': ?lastResumeTime,
    'lastScheduledRunResponse': ?lastScheduledRunResponse,
    'maxConcurrentRunCount': ?maxConcurrentRunCount,
    'maxRunCount': ?maxRunCount,
    'name': ?name,
    'nextRunTime': ?nextRunTime,
    'startTime': ?startTime,
    'startedRunCount': ?startedRunCount,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}