aes70
Version:
A controller library for the AES70 protocol.
24 lines (22 loc) • 562 B
JavaScript
/*
* This file has been generated.
*/
export class OcaCommandSetResult {
/**
* Execution result of a Commandset
* @class OcaCommandSetResult
*/
constructor(EndState, CommandResults) {
/**
* Completed normally, completed abnormally, aborted, or failed
* @type OcaGenericEndState
*/
this.EndState = EndState;
/**
* One entry per (successfully or unsuccessfully) executed command.
* Unexecuted commands are not in the list.
* @type OcaCommandResult[]
*/
this.CommandResults = CommandResults;
}
}