data class GroupSubmissionStatistics: Any
      
Fields
| Name | Description | 
|---|---|
| val groupID: Long | is a Long, identifying the ProjectGroup | 
| val nrPassedTests: Int | is an Int, representing how many tests the group's (last) submission passes | 
| val nrSubmissions: Int | is an Int, representing the number of submissions that the group performed | 
Constructors
<init>
        constructor(groupID: Long, nrPassedTests: Int, nrSubmissions: Int)
      
Represents the submission statistics for a certain ProjectGroup.
Parameters
| Name | Description | 
|---|---|
| groupID: Long | |
| nrPassedTests: Int | |
| nrSubmissions: Int | 
Methods
equals
        fun equals(other: Any?): Boolean
      
Parameters
| Name | Description | 
|---|---|
| other: Any? | 
ReturnValue
| Name | Description | 
|---|---|
| Boolean | 
Represents the submission statistics for a certain ProjectGroup.