Module Values.CreateLayoutRequestSource

Creates a layout in the Cases domain. Layouts define the following configuration in the top section and More Info tab of the Cases user interface: Fields to display to the users Field ordering Title and Status fields cannot be part of layouts since they are not configurable.

Sourcetype nonrec t = {
  1. domainId : DomainId.t;
    (*

    The unique identifier of the Cases domain.

    *)
  2. name : LayoutName.t;
    (*

    The name of the layout. It must be unique for the Cases domain.

    *)
  3. content : LayoutContent.t;
    (*

    Information about which fields will be present in the layout, and information about the order of the fields.

    *)
}
Sourceval context_ : string
Sourceval make : domainId:DomainId.t -> name:LayoutName.t -> content:LayoutContent.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainId.t | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of FieldId.t ]) list ] list | `String of FieldGroupNameString.t ]) list ]) list ] list ]) list ]) list ]) 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