Module Values.BatchPutFieldOptionsRequestSource

Creates and updates a set of field options for a single select field in a Cases domain.

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

    The unique identifier of the Cases domain.

    *)
  2. fieldId : FieldId.t;
    (*

    The unique identifier of a field.

    *)
  3. options : BatchPutFieldOptionsRequestOptionsList.t;
    (*

    A list of FieldOption objects.

    *)
}
Sourceval context_ : string
Sourceval make : domainId:DomainId.t -> fieldId:FieldId.t -> options:BatchPutFieldOptionsRequestOptionsList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Boolean of Boolean.t | `String of FieldOptionName.t ]) list ] list | `String of DomainId.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