toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bucketingConfig = this.bucketingConfig;
final characterMaskConfig = this.characterMaskConfig;
final cryptoDeterministicConfig = this.cryptoDeterministicConfig;
final cryptoHashConfig = this.cryptoHashConfig;
final cryptoReplaceFfxFpeConfig = this.cryptoReplaceFfxFpeConfig;
final dateShiftConfig = this.dateShiftConfig;
final fixedSizeBucketingConfig = this.fixedSizeBucketingConfig;
final redactConfig = this.redactConfig;
final replaceConfig = this.replaceConfig;
final replaceDictionaryConfig = this.replaceDictionaryConfig;
final replaceWithInfoTypeConfig = this.replaceWithInfoTypeConfig;
final timePartConfig = this.timePartConfig;
return {
'bucketingConfig': ?bucketingConfig,
'characterMaskConfig': ?characterMaskConfig,
'cryptoDeterministicConfig': ?cryptoDeterministicConfig,
'cryptoHashConfig': ?cryptoHashConfig,
'cryptoReplaceFfxFpeConfig': ?cryptoReplaceFfxFpeConfig,
'dateShiftConfig': ?dateShiftConfig,
'fixedSizeBucketingConfig': ?fixedSizeBucketingConfig,
'redactConfig': ?redactConfig,
'replaceConfig': ?replaceConfig,
'replaceDictionaryConfig': ?replaceDictionaryConfig,
'replaceWithInfoTypeConfig': ?replaceWithInfoTypeConfig,
'timePartConfig': ?timePartConfig,
};
}