toJson method

Map<String, dynamic> toJson()

Implementation

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