toJson method
Implementation
Map<String, dynamic> toJson() {
final applicationCodeUpdate = this.applicationCodeUpdate;
final cloudWatchLoggingOptionUpdates = this.cloudWatchLoggingOptionUpdates;
final inputUpdates = this.inputUpdates;
final outputUpdates = this.outputUpdates;
final referenceDataSourceUpdates = this.referenceDataSourceUpdates;
return {
if (applicationCodeUpdate != null)
'ApplicationCodeUpdate': applicationCodeUpdate,
if (cloudWatchLoggingOptionUpdates != null)
'CloudWatchLoggingOptionUpdates': cloudWatchLoggingOptionUpdates,
if (inputUpdates != null) 'InputUpdates': inputUpdates,
if (outputUpdates != null) 'OutputUpdates': outputUpdates,
if (referenceDataSourceUpdates != null)
'ReferenceDataSourceUpdates': referenceDataSourceUpdates,
};
}