Module Values.DeleteRelatedItemRequestSource

Deletes the related item resource under a case. This API cannot be used on a FILE type related attachment. To delete this type of file, use the DeleteAttachedFile API

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

    A unique identifier of the Cases domain.

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

    A unique identifier of the case.

    *)
  3. relatedItemId : RelatedItemId.t;
    (*

    A unique identifier of a related item.

    *)
}
Sourceval context_ : string
Sourceval make : domainId:DomainId.t -> caseId:CaseId.t -> relatedItemId:RelatedItemId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `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