package oidc

  1. Overview
  2. Docs

Source file States.ml

1
2
3
4
5
6
7
8
9
type invalidPayload = [ `Msg of string ]
type code = string

type t =
  | Not_started
  | Authorizing of Parameters.t
  | Interaction of Parameters.t
  | Waiting_for_code of code * Jose.Jwt.t
  | Invalid of invalidPayload