data class JacocoReport: Any
      
Fields
| Name | Description | 
|---|---|
| val id: Long | is a Long with a primary-key like generated id | 
| val submissionId: Long | is Long is a Long, identifying the Submission that the report is based on | 
| val fileName: String | is a String with the name of the JUnit report file | 
| val csvReport: String | is a String with the CSV version of the report | 
Constructors
<init>
        constructor(id: Long, submissionId: Long, fileName: String, csvReport: String)
      
Represents a persisted Jacoco report. The Jacoco report contains the result of calculating the code coverage of a Submission.
Parameters
| Name | Description | 
|---|---|
| id: Long | |
| submissionId: Long | |
| fileName: String | |
| csvReport: String | 
Represents a persisted Jacoco report. The Jacoco report contains the result of calculating the code coverage of a Submission.