com.personio.synthetics.model.assertion.AssertionParams.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.assertion
import com.datadog.api.client.v1.model.SyntheticsCheckType
import com.personio.synthetics.model.Params
import com.personio.synthetics.model.element.Element
internal data class AssertionParams(
val attribute: String? = null,
val value: String? = null,
val check: SyntheticsCheckType? = null,
val element: Element? = null,
val code: String? = null,
) : Params()
© 2015 - 2024 Weber Informatics LLC | Privacy Policy