PerformanceOrder

@Serializable
enum PerformanceOrder : Enum<PerformanceOrder>

The assessments in a session can be presented in a fixed and sequential order, in a randomized order the participant cannot choose, or the participant may be allowed to pick and choose the assessments to do them in an order of their choosing. This enum specifies which method must be presented to the participant. |Status|Description| |---|---| |participant_choice|The participant can perform the assessments in any order.| |sequential|The participant must perform the assessments in the order they are specified in the session.| |randomized|The assessments should be presented to the user in a randomized order.| Values: "participant_choice","sequential","randomized"

Entries

Link copied to clipboard
@SerialName(value = "participant_choice")
PARTICIPANT_CHOICE
Link copied to clipboard
@SerialName(value = "sequential")
SEQUENTIAL
Link copied to clipboard
@SerialName(value = "randomized")
RANDOMIZED

Properties

Link copied to clipboard

Returns a representation of an immutable list of all enum entries, in the order they're declared.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val serialName: String? = null

Functions

Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared.