src/waveform/waveform-control-command-response.ts
The Waveform Control Command Response indicates whether the command to start or stop was successful. In the case of launching, the response indicates if the waveform is started.
Properties |
id |
id:
|
Type : string
|
Waveform's ID |
started |
started:
|
Type : boolean
|
true if the Waveform is started, false otherwise |
export interface IWaveformControlCommandResponse {
/** Waveform's ID */
id: string;
/** true if the Waveform is started, false otherwise */
started: boolean;
}