com.avito.reportviewer.internal.model.ConclusionStatus.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 enum class ConclusionStatus {
@SerializedName("ok")
OK,
@SerializedName("fail")
FAIL,
@SerializedName("irrelevant")
IRRELEVANT,
}