Stopped

data class Stopped(id: UUID, participants: Set<Participant>, invitedOn: Instant, studyDeploymentStatus: StudyDeploymentStatus, startedOn: Instant?, stoppedOn: Instant) : ParticipantGroupStatus.InDeployment

The study deployment has StudyDeploymentStatus.Stopped, of which more details are available in studyDeploymentStatus.

Constructors

Stopped
Link copied to clipboard
fun Stopped(id: UUID, participants: Set<Participant>, invitedOn: Instant, studyDeploymentStatus: StudyDeploymentStatus, startedOn: Instant?, stoppedOn: Instant)

Properties

id
Link copied to clipboard
open override val id: UUID

The ID of this participant group, which is equivalent to the ID of the associated study deployment once deployed.

invitedOn
Link copied to clipboard
open override val invitedOn: Instant

The time at which the participant group was invited.

participants
Link copied to clipboard
open override val participants: Set<Participant>

The participants that are part of this group.

startedOn
Link copied to clipboard
val startedOn: Instant?

The time when the study deployment was ready for the first time (all devices deployed), or null in case this was never the case.

stoppedOn
Link copied to clipboard
val stoppedOn: Instant

The time when the study deployment was stopped.

studyDeploymentStatus
Link copied to clipboard
open override val studyDeploymentStatus: StudyDeploymentStatus

The deployment status of the study deployment the participants were invited to.