package dap

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. 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.

    *)
  2. 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