Module Values.AuthenticationSource

Indicates whether the user requires a password to authenticate.

Sourcetype nonrec t = {
  1. type_ : AuthenticationType.t option;
    (*

    Indicates whether the user requires a password to authenticate.

    *)
  2. passwordCount : IntegerOptional.t option;
    (*

    The number of passwords belonging to the user. The maximum is two.

    *)
}
Sourceval make : ?type_:??? -> ?passwordCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of IntegerOptional.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t