Skip to content

Commit 8b07d7f

Browse files
authored
Ignore mimeType and finished flags in ConsumptionReportingUnit as they should not be included in the final consumption report. (#22)
1 parent ec67456 commit 8b07d7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/src/main/java/com/fivegmag/a5gmscommonlibrary/consumptionReporting/ConsumptionReport.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ data class ConsumptionReportingUnit(
3232
val startTime: String,
3333
var duration: Int,
3434
var locations: ArrayList<TypedLocation>? = ArrayList(),
35-
//@JsonIgnore
35+
@JsonIgnore
3636
var mimeType: String? = null,
37-
//@JsonIgnore
37+
@JsonIgnore
3838
var finished: Boolean = false
3939
) : Parcelable
4040

0 commit comments

Comments
 (0)