Package-level declarations

Types

Link copied to clipboard
class SelfReportData(var facilities: List<Facility> = emptyList(), var selfReportMonths: List<SelfReportMonth> = emptyList(), var statusMessage: String? = null)

The member's self-report history, returned by com.advantahealth.api.selfreport.SelfReport.get.

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

One month's worth of self-reported visits within a SelfReportData history.

Link copied to clipboard
class SelfReportVisit(var day: Int? = 0, var statusType: ActivityStatus = ActivityStatus.PENDING, var facilityId: Int? = 0)

A single member self-reported facility visit within a SelfReportMonth.