Module Values.AccessRestrictionSource

Indicates if the access location is restricted. Index correlates to that of an access point and indicates if access through this point has some form of restriction.

Sourcetype nonrec t = {
  1. restricted : SensitiveBoolean.t option;
    (*

    The restriction.

    *)
  2. categories : CategoryList.t option;
    (*

    Categories of results that results must belong too.

    *)
}
Sourceval make : ?restricted:??? -> ?categories:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of SensitiveBoolean.t | `List of [> `Structure of (string * [> `Boolean of SensitiveBoolean.t | `String of CategoryIdString.t ]) list ] list ]) 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