Module Values.UpdateLayoutRequestSource

Updates the attributes of an existing layout. If the action is successful, the service sends back an HTTP 200 response with an empty HTTP body. A ValidationException is returned when you add non-existent fieldIds to a layout. Title and Status fields cannot be part of layouts because they are not configurable.

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

    The unique identifier of the Cases domain.

    *)
  2. layoutId : LayoutId.t;
    (*

    The unique identifier of the layout.

    *)
  3. name : LayoutName.t option;
    (*

    The name of the layout. It must be unique per domain.

    *)
  4. content : LayoutContent.t option;
    (*

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

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?content:??? -> domainId:DomainId.t -> layoutId:LayoutId.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