Module Values.FieldPositionSource

Describes the field position.

Sourcetype nonrec t = {
  1. fixed : FixedPosition.t option;
    (*

    The field position is fixed and doesn't change in relation to other fields.

    *)
  2. rightOf : String_.t option;
    (*

    The field position is to the right of the field specified by the string.

    *)
  3. below : String_.t option;
    (*

    The field position is below the field specified by the string.

    *)
}
Sourceval make : ?fixed:??? -> ?rightOf:??? -> ?below:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `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