Invited

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

The participants have been invited to a study deployment which isn't Running or hasn't been Stopped yet. More details are on the study deployment state are available in studyDeploymentStatus.

Constructors

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

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.

studyDeploymentStatus
Link copied to clipboard
open override val studyDeploymentStatus: StudyDeploymentStatus

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