toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final cronSchedule = this.cronSchedule;
final disabled = this.disabled;
final internalMetadata = this.internalMetadata;
final invocationConfig = this.invocationConfig;
final name = this.name;
final recentScheduledExecutionRecords =
this.recentScheduledExecutionRecords;
final releaseConfig = this.releaseConfig;
final timeZone = this.timeZone;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'cronSchedule': ?cronSchedule,
'disabled': ?disabled,
'internalMetadata': ?internalMetadata,
'invocationConfig': ?invocationConfig,
'name': ?name,
'recentScheduledExecutionRecords': ?recentScheduledExecutionRecords,
'releaseConfig': ?releaseConfig,
'timeZone': ?timeZone,
'updateTime': ?updateTime,
};
}