Module Values_1.HierarchyStructureUpdateSource

Contains information about the level hierarchy to update.

Sourcetype nonrec t = {
  1. levelOne : HierarchyLevelUpdate.t option;
    (*

    The update for level one.

    *)
  2. levelTwo : HierarchyLevelUpdate.t option;
    (*

    The update for level two.

    *)
  3. levelThree : HierarchyLevelUpdate.t option;
    (*

    The update for level three.

    *)
  4. levelFour : HierarchyLevelUpdate.t option;
    (*

    The update for level four.

    *)
  5. levelFive : HierarchyLevelUpdate.t option;
    (*

    The update for level five.

    *)
}
Sourceval make : ?levelOne:??? -> ?levelTwo:??? -> ?levelThree:??? -> ?levelFour:??? -> ?levelFive:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of HierarchyLevelName.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