Module Set_variable_command.Arguments

type t = {
variables_reference : int;

The reference of the variable container.

name : string;

The name of the variable in the container.

value : string;

The value of the variable.

format : Value_format.t option;

Specifies details on how to format the response value.

}

Arguments for 'setVariable' request.

val make : variables_reference:int -> name:string -> value:string -> ?⁠format:Value_format.t option -> unit -> t
val to_yojson : t -> Yojson.Safe.t
val of_yojson : Yojson.Safe.t -> t Ppx_deriving_yojson_runtime.error_or