ParticipationStatus enum

The Participation status of an appointment.

Inheritance
Implemented types
Available extensions

Values

accepted → const ParticipationStatus

The participant has accepted the appointment.

const ParticipationStatus(code: 'accepted', display: 'Accepted', system: _participantStatusUri)
declined → const ParticipationStatus

The participant has declined the appointment and will not participate in the appointment.

const ParticipationStatus(code: 'declined', display: 'Declined', system: _participantStatusUri)
tentative → const ParticipationStatus

The participant has tentatively accepted the appointment. This could be automatically created by a system and requires further processing before it can be accepted. There is no commitment that attendance will occur.

const ParticipationStatus(code: 'tentative', display: 'Tentative', system: _participantStatusUri)
needsAction → const ParticipationStatus

The participant needs to indicate if they accept the appointment by changing this status to one of the other statuses.

const ParticipationStatus(code: 'needs-action', display: 'Needs Action', system: _participantStatusUri)

Properties

code String
A code representing the participation status.
final
display String
A human-readable display name for the participation status.
final
hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
system String
The URI of the terminology system that defines the participation status codes.
final

Methods

compareTo(ParticipationStatus other) int
Compares this object to another object.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Methods

fromCode(String code) ParticipationStatus
Returns the participation status based on the string code, and throws an exception if no match is found.

Constants

values → const List<ParticipationStatus>
A constant List of the values in this enum, in order of their declaration.