Module Values.UpdateCaseRequestSource

If you provide a value for PerformedBy.UserArn you must also have connect:DescribeUser permission on the User ARN resource that you provide Updates the values of fields on a case. Fields to be updated are received as an array of id/value pairs identical to the CreateCase input . If the action is successful, the service sends back an HTTP 200 response with an empty HTTP body.

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

    The unique identifier of the Cases domain.

    *)
  2. caseId : CaseId.t;
    (*

    A unique identifier of the case.

    *)
  3. fields : UpdateCaseRequestFieldsList.t;
    (*

    An array of objects with fieldId (matching ListFields/DescribeField) and value union data, structured identical to CreateCase.

    *)
  4. performedBy : UserUnion.t option;
}
Sourceval context_ : string
Sourceval make : ?performedBy:??? -> domainId:DomainId.t -> caseId:CaseId.t -> fields:UpdateCaseRequestFieldsList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of FieldId.t | `Structure of (string * [> `Boolean of Boolean.t | `Double of Double.t | `String of FieldValueUnionStringValueString.t | `Structure of 'a list ]) list ]) list ] list | `String of DomainId.t | `Structure of (string * [> `String of UserArn.t ]) 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