Module Values.DeleteCaseRequestSource

The DeleteCase API permanently deletes a case and all its associated resources from the cases data store. After a successful deletion, you cannot: Retrieve related items Access audit history Perform any operations that require the CaseID This action is irreversible. After you delete a case, you cannot recover its data.

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

    A unique identifier of the Cases domain.

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

    A unique identifier of the case.

    *)
}
Sourceval context_ : string
Sourceval make : domainId:DomainId.t -> caseId:CaseId.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