src/waveform/waveform-release-response.ts
Waveform release response contains the ID of the recently released waveform and the up-to-date list of any running applications.
Properties |
applications |
applications:
|
Type : ResourceRefs
|
Defined in src/waveform/waveform-release-response.ts:11
|
The list of currently running Waveforms that remain |
released |
released:
|
Type : string
|
Defined in src/waveform/waveform-release-response.ts:9
|
The ID of the released (removed) Waveform |
import { ResourceRefs } from '../models/index';
/**
* Waveform release response contains the ID of the recently released waveform
* and the up-to-date list of any running applications.
*/
export interface IWaveformReleaseResponse {
/** The ID of the released (removed) Waveform */
released: string;
/** The list of currently running Waveforms that remain */
applications: ResourceRefs;
}