com.avito.reportviewer.internal.model.PreparedData.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of report-viewer Show documentation
Show all versions of report-viewer Show documentation
Collection of infrastructure libraries and gradle plugins of Avito Android project
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?
)