Module Values.RangeSource

Identifies where the sensitive data begins and ends.

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

    The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.

    *)
  2. end_ : Long.t option;
    (*

    The number of lines (for a line range) or characters (for an offset range) from the beginning of the file to the end of the sensitive data.

    *)
  3. startColumn : Long.t option;
    (*

    In the line where the sensitive data starts, the column within the line where the sensitive data starts.

    *)
}
Sourceval make : ?start:??? -> ?end_:??? -> ?startColumn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Long of Long.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