FeatureVariationObject

data class FeatureVariationObject(val booleanValue: Boolean? = null, val doubleValue: Double? = null, val longValue: Double? = null, val stringValue: String? = null, val variationName: String? = null)

Constructors

Link copied to clipboard
constructor(booleanValue: Boolean? = null, doubleValue: Double? = null, longValue: Double? = null, stringValue: String? = null, variationName: String? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val booleanValue: Boolean? = null

The value assigned to this variation, if the variation type is boolean.

Link copied to clipboard
val doubleValue: Double? = null

The value assigned to this variation, if the variation type is a double.

Link copied to clipboard
val longValue: Double? = null

The value assigned to this variation, if the variation type is a long.

Link copied to clipboard
val stringValue: String? = null

The value assigned to this variation, if the variation type is a string.

Link copied to clipboard
val variationName: String? = null

A name for the variation. It can include up to 127 characters.