toJson method

Map<String, dynamic> toJson()

Implementation

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