toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final backfillAll = this.backfillAll;
final backfillNone = this.backfillNone;
final createTime = this.createTime;
final customerManagedEncryptionKey = this.customerManagedEncryptionKey;
final destinationConfig = this.destinationConfig;
final displayName = this.displayName;
final errors = this.errors;
final labels = this.labels;
final lastRecoveryTime = this.lastRecoveryTime;
final name = this.name;
final ruleSets = this.ruleSets;
final satisfiesPzi = this.satisfiesPzi;
final satisfiesPzs = this.satisfiesPzs;
final sourceConfig = this.sourceConfig;
final state = this.state;
final updateTime = this.updateTime;
return {
'backfillAll': ?backfillAll,
'backfillNone': ?backfillNone,
'createTime': ?createTime,
'customerManagedEncryptionKey': ?customerManagedEncryptionKey,
'destinationConfig': ?destinationConfig,
'displayName': ?displayName,
'errors': ?errors,
'labels': ?labels,
'lastRecoveryTime': ?lastRecoveryTime,
'name': ?name,
'ruleSets': ?ruleSets,
'satisfiesPzi': ?satisfiesPzi,
'satisfiesPzs': ?satisfiesPzs,
'sourceConfig': ?sourceConfig,
'state': ?state,
'updateTime': ?updateTime,
};
}