PrerequisiteFlagCondition

@Serializable
data class PrerequisiteFlagCondition(val prerequisiteFlagKey: String? = null, val prerequisiteComparator: Int = -1, val value: SettingValue? = null)(source)

Prerequisite Flag Condition.

Constructors

Link copied to clipboard
constructor(prerequisiteFlagKey: String? = null, prerequisiteComparator: Int = -1, value: SettingValue? = null)

Properties

Link copied to clipboard
@SerialName(value = "c")
val prerequisiteComparator: Int

The operator which defines the relation between the evaluated value of the prerequisite flag and the comparison value.

Link copied to clipboard
@SerialName(value = "f")
val prerequisiteFlagKey: String? = null

The key of the prerequisite flag that the condition is based on.

Link copied to clipboard
@SerialName(value = "v")
val value: SettingValue? = null

The value that the evaluated value of the prerequisite flag is compared to.