android-components / mozilla.components.concept.engine.prompt / PromptRequest / MultipleChoice

MultipleChoice

data class MultipleChoice : PromptRequest (source)

Value type that represents a request for a multiple choice prompt.

Constructors

<init>

MultipleChoice(choices: Array<Choice>, onSelect: (Array<Choice>) -> Unit)

Value type that represents a request for a multiple choice prompt.

Properties

choices

val choices: Array<Choice>

All the possible options.

onSelect

val onSelect: (Array<Choice>) -> Unit

A callback indicating witch options has been selected.