com.avito.reportviewer.ReportsFetchApi.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
import com.avito.android.Result
import com.avito.reportviewer.model.Report
import com.avito.reportviewer.model.ReportCoordinates
import com.avito.reportviewer.model.SimpleRunTest
public interface ReportsFetchApi {
/**
* Run.GetByParams
*
* todo remove Report from public api
* todo remove ReportCoordinates from public api
*/
public fun getReport(reportCoordinates: ReportCoordinates): Result
/**
* RunTest.List
* получение краткого списка результатов тестов по запуску
*/
public fun getTestsForRunId(reportCoordinates: ReportCoordinates): Result>
}