FeatureVariationValueArgs

data class FeatureVariationValueArgs(val boolValue: Output<String>? = null, val doubleValue: Output<String>? = null, val longValue: Output<String>? = null, val stringValue: Output<String>? = null) : ConvertibleToJava<FeatureVariationValueArgs>

Constructors

Link copied to clipboard
constructor(boolValue: Output<String>? = null, doubleValue: Output<String>? = null, longValue: Output<String>? = null, stringValue: Output<String>? = null)

Properties

Link copied to clipboard
val boolValue: Output<String>? = null

If this feature uses the Boolean variation type, this field contains the Boolean value of this variation.

Link copied to clipboard
val doubleValue: Output<String>? = null

If this feature uses the double integer variation type, this field contains the double integer value of this variation.

Link copied to clipboard
val longValue: Output<String>? = null

If this feature uses the long variation type, this field contains the long value of this variation. Minimum value of -9007199254740991. Maximum value of 9007199254740991.

Link copied to clipboard
val stringValue: Output<String>? = null

If this feature uses the string variation type, this field contains the string value of this variation. Minimum length of 0. Maximum length of 512.

Functions

Link copied to clipboard
open override fun toJava(): FeatureVariationValueArgs