toJson method
Implementation
Map<String, dynamic> toJson() {
final actionThresholdType = this.actionThresholdType;
final actionThresholdValue = this.actionThresholdValue;
return {
'ActionThresholdType': actionThresholdType.toValue(),
'ActionThresholdValue': actionThresholdValue,
};
}