Module RuleResults.UrlBlocks

module Urls : sig ... end
module Header : sig ... end
type t = {
header : Header.t;(*

Heading to be displayed with the list of URLs.

*)
urls : Urls.t list;(*

List of entries that provide information about URLs in the url block. Optional.

*)
}
val header : ( t, Header.t ) GapiLens.t
val urls : ( t, Urls.t list ) GapiLens.t
val empty : t
val render : t -> GapiJson.json_data_model list
val parse : t -> GapiJson.json_data_model -> t