Module Parameters.Prompt

type t = [
  1. | `None
  2. | `Login
  3. | `Consent
  4. | `Select_account
]
type error = [
  1. | `Invalid_prompt of string
]
val serialize : t -> string
val parse : string -> (t, [> error ]) Stdlib.result