toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final fieldToMatch = this.fieldToMatch;
  final regexPatternSetId = this.regexPatternSetId;
  final textTransformation = this.textTransformation;
  return {
    'FieldToMatch': fieldToMatch,
    'RegexPatternSetId': regexPatternSetId,
    'TextTransformation': textTransformation.toValue(),
  };
}