All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.malinskiy.marathon.config.vendor.android.ScreenshotConfiguration.kt Maven / Gradle / Ivy

package com.malinskiy.marathon.config.vendor.android

import com.fasterxml.jackson.annotation.JsonProperty

data class ScreenshotConfiguration(
    @JsonProperty("enabled") val enabled: Boolean = true,
    @JsonProperty("width") val width: Int = 720,
    @JsonProperty("height") val height: Int = 1280,
    @JsonProperty("delayMs") val delayMs: Int = 500
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy