toJson method
Implementation
Map<String, dynamic> toJson() {
final redactionOutput = this.redactionOutput;
final redactionType = this.redactionType;
return {
'RedactionOutput': redactionOutput.toValue(),
'RedactionType': redactionType.toValue(),
};
}