package dap

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Progress_end_event.PayloadSource

Sourcetype t = {
  1. progress_id : string;
    (*

    The ID that was introduced in the initial 'ProgressStartEvent'.

    *)
  2. message : string option;
    (*

    Optional, more detailed progress message. If omitted, the previous message (if any) is used.

    *)
}
Sourceval make : progress_id:string -> ?message:string option -> unit -> t
Sourceval to_yojson : t -> Yojson.Safe.t