Module Connection.Credentials

module Password : sig ... end

Password credentials correspond to Reddit's "script" app type.

module Refresh_token : sig ... end

Refresh_token credentials correspond to Reddit's "web app" and "installed-app" app types.

module Userless_confidential : sig ... end
module Userless_public : sig ... end
type t =
  1. | Password of Password.t
  2. | Refresh_token of Refresh_token.t
  3. | Userless_confidential of Userless_confidential.t
  4. | Userless_public of Userless_public.t
include Sexplib0.Sexpable.S with type t := t
val t_of_sexp : Sexplib0__.Sexp.t -> t
val sexp_of_t : t -> Sexplib0__.Sexp.t