RouteMapRule

data class RouteMapRule(val actions: List<RouteMapRuleAction>? = null, val matchCriterions: List<RouteMapRuleMatchCriterion>? = null, val name: String, val nextStepIfMatched: String? = null)

Constructors

Link copied to clipboard
constructor(actions: List<RouteMapRuleAction>? = null, matchCriterions: List<RouteMapRuleMatchCriterion>? = null, name: String, nextStepIfMatched: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

An action block as defined below.

Link copied to clipboard

A match_criterion block as defined below.

Link copied to clipboard

The unique name for the rule.

Link copied to clipboard

The next step after the rule is evaluated. Possible values are Continue, Terminate and Unknown. Defaults to Unknown.