toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final backfillDataBoostEnabled = this.backfillDataBoostEnabled;
final changeStreamName = this.changeStreamName;
final excludeObjects = this.excludeObjects;
final fgacRole = this.fgacRole;
final includeObjects = this.includeObjects;
final maxConcurrentBackfillTasks = this.maxConcurrentBackfillTasks;
final maxConcurrentCdcTasks = this.maxConcurrentCdcTasks;
final spannerRpcPriority = this.spannerRpcPriority;
return {
'backfillDataBoostEnabled': ?backfillDataBoostEnabled,
'changeStreamName': ?changeStreamName,
'excludeObjects': ?excludeObjects,
'fgacRole': ?fgacRole,
'includeObjects': ?includeObjects,
'maxConcurrentBackfillTasks': ?maxConcurrentBackfillTasks,
'maxConcurrentCdcTasks': ?maxConcurrentCdcTasks,
'spannerRpcPriority': ?spannerRpcPriority,
};
}