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

SingleChoice

data class SingleChoice : PromptRequest (source)

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

Constructors

<init>

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

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

Properties

choices

val choices: Array<Choice>

All the possible options.

onSelect

val onSelect: (Choice) -> Unit

A callback indicating which option was selected.