Module Values.ReasonSummarySource

Contains information about the reasoning why a check for access passed or failed.

Sourcetype nonrec t = {
  1. description : String_.t option;
    (*

    A description of the reasoning of a result of checking for access.

    *)
  2. statementIndex : Integer.t option;
    (*

    The index number of the reason statement.

    *)
  3. statementId : String_.t option;
    (*

    The identifier for the reason statement.

    *)
}
Sourceval make : ?description:??? -> ?statementIndex:??? -> ?statementId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of Integer.t | `String of String_.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