Rules Engine Rule Response
data class RulesEngineRuleResponse(val action: RulesEngineActionResponse, val matchConditions: List<RulesEngineMatchConditionResponse>? = null, val matchProcessingBehavior: String? = null, val name: String, val priority: Int)
Contains a list of match conditions, and an action on how to modify the request/response. If multiple rules match, the actions from one rule that conflict with a previous rule overwrite for a singular action, or append in the case of headers manipulation.
Constructors
Link copied to clipboard
fun RulesEngineRuleResponse(action: RulesEngineActionResponse, matchConditions: List<RulesEngineMatchConditionResponse>? = null, matchProcessingBehavior: String? = null, name: String, priority: Int)