com.personio.synthetics.model.actions.WaitParams.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datadog-synthetic-test-support Show documentation
Show all versions of datadog-synthetic-test-support Show documentation
Kotlin library for managing Datadog Synthetic test as code
package com.personio.synthetics.model.actions
import com.personio.synthetics.model.Params
internal data class WaitParams(val value: Int = 1) : Params() {
init {
require(value in 1..300) {
"Waiting time must be no less than 1 and no bigger than 300 seconds."
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy