Add a new OptionalFilters interface with a polymorphic serializer so they can be either a list of OptionalFilters or a String
Add a new optionalFilters property in the rule Consequence class that is a List<OptionalFilters>
What problem is this fixing?
Rule consequence param optionalFilters weren't deserialized and could cause a crash if they were present in the request response
Describe your change
Add a new
OptionalFilters
interface with a polymorphic serializer so they can be either a list of OptionalFilters or a String Add a new optionalFilters property in the ruleConsequence
class that is aList<OptionalFilters>
What problem is this fixing?
Rule consequence param
optionalFilters
weren't deserialized and could cause a crash if they were present in the request response