data class Experiment
(source)
Represents an A/B test experiment, independent of the underlying storage mechanism
data class Bucket |
|
data class Matcher |
Experiment(id: String, name: String, description: String? = null, match: Matcher? = null, bucket: Bucket? = null, lastModified: Long? = null, payload: ExperimentPayload? = null, schema: Long? = null)
Represents an A/B test experiment, independent of the underlying storage mechanism |
val bucket: Bucket?
Experiment buckets |
|
val description: String?
Detailed description of the experiment |
|
val lastModified: Long?
Last modified date, as a UNIX timestamp |
|
val match: Matcher?
Filters for enabling the experiment |
|
val name: String
Human-readable name of the experiment |
|
val payload: ExperimentPayload?
Experiment associated metadata |
|
val schema: Long?
Last time the experiment schema was modified (as a UNIX timestamp) |
fun equals(other: Any?): Boolean
Compares experiments by their id |
|
fun hashCode(): Int |