Module Values.ChildBlockSource

Nested block contained within a block.

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

    Unique identifier for the child block.

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

    Offset of the start of the child block within its parent block.

    *)
  3. endOffset : Integer.t option;
    (*

    Offset of the end of the child block within its parent block.

    *)
}
Sourceval make : ?childBlockId:??? -> ?beginOffset:??? -> ?endOffset:??? -> 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