Module Values.UpdateFieldRequestSource

Updates the properties of an existing field.

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. name : FieldName.t option;
    (*

    The name of the field.

    *)
  4. description : FieldDescription.t option;
    (*

    The description of a field.

    *)
  5. attributes : FieldAttributes.t option;
    (*

    Union of field attributes.

    *)
}
Sourceval context_ : string
Sourceval make : ?name:??? -> ?description:??? -> ?attributes:??? -> domainId:DomainId.t -> fieldId:FieldId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of DomainId.t | `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t ]) 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