com.avito.reportviewer.model.Report.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.model
/**
* Один прогон тестов по координатам
*
* todo internal
*/
public data class Report(
val id: String,
val planSlug: String,
val jobSlug: String,
val runId: String,
val isFinished: Boolean,
val buildBranch: String?
) {
public companion object
}