ComponentConditionProperty

data class ComponentConditionProperty(val else: ComponentProperty? = null, val field: String? = null, val operand: String? = null, val operandType: String? = null, val operator: String? = null, val property: String? = null, val then: ComponentProperty? = null)

Constructors

Link copied to clipboard
constructor(else: ComponentProperty? = null, field: String? = null, operand: String? = null, operandType: String? = null, operator: String? = null, property: String? = null, then: ComponentProperty? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val else: ComponentProperty? = null

The value to assign to the property if the condition is not met.

Link copied to clipboard
val field: String? = null

The name of a field. Specify this when the property is a data model.

Link copied to clipboard
val operand: String? = null

The value of the property to evaluate.

Link copied to clipboard
val operandType: String? = null

The type of the property to evaluate.

Link copied to clipboard
val operator: String? = null

The operator to use to perform the evaluation, such as eq to represent equals.

Link copied to clipboard
val property: String? = null

The name of the conditional property.

Link copied to clipboard
val then: ComponentProperty? = null

The value to assign to the property if the condition is met.