toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final codeCompilationConfig = this.codeCompilationConfig;
final cronSchedule = this.cronSchedule;
final disabled = this.disabled;
final gitCommitish = this.gitCommitish;
final internalMetadata = this.internalMetadata;
final name = this.name;
final recentScheduledReleaseRecords = this.recentScheduledReleaseRecords;
final releaseCompilationResult = this.releaseCompilationResult;
final timeZone = this.timeZone;
return {
'codeCompilationConfig': ?codeCompilationConfig,
'cronSchedule': ?cronSchedule,
'disabled': ?disabled,
'gitCommitish': ?gitCommitish,
'internalMetadata': ?internalMetadata,
'name': ?name,
'recentScheduledReleaseRecords': ?recentScheduledReleaseRecords,
'releaseCompilationResult': ?releaseCompilationResult,
'timeZone': ?timeZone,
};
}