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

com.avito.reportviewer.internal.model.PreparedData.kt Maven / Gradle / Ivy

Go to download

Collection of infrastructure libraries and gradle plugins of Avito Android project

There is a newer version: 2023.22
Show newest version
package com.avito.reportviewer.internal.model

import com.google.gson.annotations.SerializedName

internal data class PreparedData(
    @SerializedName("verdict") val verdict: String?,
    @SerializedName("run_duration") val runDuration: Int,
    @SerializedName("error_hash") val errorHash: String,
    @SerializedName("tc_build") val tcBuild: String?,
    @SerializedName("skip_reason") val skipReason: String?,
    @SerializedName("external_id") val externalId: String?,
    @SerializedName("testcase") val cthulhuTestCase: CthulhuTestCase?,
    @SerializedName("features") val features: List?,
    @SerializedName("tag_id") val tagId: List?,
    @SerializedName("feature_id") val featureIds: List?,
    @SerializedName("priority_id") val priorityId: Int?,
    @SerializedName("behavior_id") val behaviorId: Int?,
    @SerializedName("e2e") val e2e: Boolean?,
    @SerializedName("is_flaky") val isFlaky: Boolean?,
    @SerializedName("flaky_reason") val flakyReason: String?
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy