Module Values.DisplayOrderSource

The display order.

Sourcetype nonrec t = {
  1. contents : Section.t list option;
    (*

    Represents a list of sections which include section name and list of product REST endpoints for a product.

    *)
  2. overviewPageArn : string option;
    (*

    The ARN of the overview page.

    *)
  3. productPageArns : string list option;
    (*

    The product page ARNs.

    *)
}
Sourceval make : ?contents:??? -> ?overviewPageArn:??? -> ?productPageArns:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of string | `Structure of (string * [> `List of [> `String of string ] list | `String of string ]) list ] list | `String of string ]) 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