SubmissionResult

data class SubmissionResult(val id: Long, val url: String, val maxPoints: Int, val userPoints: Int, var latePenalty: Double?, var status: SubmissionResult.Companion.Status, val filesInfo: List<SubmissionFileInfo>, val testsSucceeded: Int = -1, val testsFailed: Int = -1, var isDetailsLoaded: Boolean = false)

Constructors

Link copied to clipboard
constructor(id: Long, url: String, maxPoints: Int, userPoints: Int, latePenalty: Double?, status: SubmissionResult.Companion.Status, filesInfo: List<SubmissionFileInfo>, testsSucceeded: Int = -1, testsFailed: Int = -1, isDetailsLoaded: Boolean = false)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
Link copied to clipboard
val id: Long
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val url: String
Link copied to clipboard

Functions

Link copied to clipboard
fun updateStatus(statusString: String)