Package-level declarations
Types
Link copied to clipboard
class SelfReportData(var facilities: List<Facility> = emptyList(), var selfReportMonths: List<SelfReportMonth> = emptyList(), var statusMessage: String? = null)
Data class representing the self-report data.
Link copied to clipboard
class SelfReportMonth(val month: Int? = 0, val year: Int? = 0, val visits: List<SelfReportVisit> = emptyList())
Represents a month in the self-report data.
Link copied to clipboard
class SelfReportVisit(var day: Int? = 0, var statusType: ActivityStatus = ActivityStatus.PENDING, var facilityId: Int? = 0)
Represents a self-reported visit to a location.