Module Values.PageSource

An occurrence of sensitive data in an Adobe Portable Document Format (PDF) file.

Sourcetype nonrec t = {
  1. pageNumber : Long.t option;
    (*

    The page number of the page that contains the sensitive data.

    *)
  2. lineRange : Range.t option;
    (*

    An occurrence of sensitive data detected in a non-binary text file or a Microsoft Word file. Non-binary text files include files such as HTML, XML, JSON, and TXT files.

    *)
  3. offsetRange : Range.t option;
    (*

    An occurrence of sensitive data detected in a binary text file.

    *)
}
Sourceval make : ?pageNumber:??? -> ?lineRange:??? -> ?offsetRange:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.t | `Structure of (string * [> `Long of Long.t ]) 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