toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dataSourceId = this.dataSourceId;
final destinationDatasetId = this.destinationDatasetId;
final emailPreferences = this.emailPreferences;
final endTime = this.endTime;
final errorStatus = this.errorStatus;
final name = this.name;
final notificationPubsubTopic = this.notificationPubsubTopic;
final params = this.params;
final runTime = this.runTime;
final schedule = this.schedule;
final scheduleTime = this.scheduleTime;
final startTime = this.startTime;
final state = this.state;
final updateTime = this.updateTime;
final userId = this.userId;
return {
'dataSourceId': ?dataSourceId,
'destinationDatasetId': ?destinationDatasetId,
'emailPreferences': ?emailPreferences,
'endTime': ?endTime,
'errorStatus': ?errorStatus,
'name': ?name,
'notificationPubsubTopic': ?notificationPubsubTopic,
'params': ?params,
'runTime': ?runTime,
'schedule': ?schedule,
'scheduleTime': ?scheduleTime,
'startTime': ?startTime,
'state': ?state,
'updateTime': ?updateTime,
'userId': ?userId,
};
}