SelfReportMonth

class SelfReportMonth(val month: Int? = 0, val year: Int? = 0, val visits: List<SelfReportVisit> = emptyList())

Represents a month in the self-report data.

Constructors

Link copied to clipboard
constructor(month: Int? = 0, year: Int? = 0, visits: List<SelfReportVisit> = emptyList())

Properties

Link copied to clipboard
val month: Int?

The month number (1-12).

Link copied to clipboard

A list of self-reported visits for this month. Defaults to an empty list.

Link copied to clipboard
val year: Int?

The year.

Functions

Link copied to clipboard
open override fun toString(): String