Module Cancel_command.Arguments

type t = {
request_id : int option;

The ID (attribute 'seq') of the request to cancel. If missing no request is cancelled. Both a 'requestId' and a 'progressId' can be specified in one request.

progress_id : string option;

The ID (attribute 'progressId') of the progress to cancel. If missing no progress is cancelled. Both a 'requestId' and a 'progressId' can be specified in one request.

}

Arguments for 'cancel' request.

val make : ?⁠request_id:int option -> ?⁠progress_id:string option -> unit -> t
val to_yojson : t -> Yojson.Safe.t
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or