src/sockets/bulkio/bulkio-control.ts
BULKIO Control Message format
Properties |
type |
type:
|
Type : ControlType
|
Defined in src/sockets/bulkio/bulkio-control.ts:10
|
The 'type' (feature) To control |
value |
value:
|
Type : number
|
Defined in src/sockets/bulkio/bulkio-control.ts:12
|
The parameter setting for the feature |
import { ControlType } from './control-type';
/**
* BULKIO Control Message format
* @property {ControlType} type - The type of control requested.
* @property {number} value - The adjustment to make.
*/
export interface BulkioControl {
/** The 'type' (feature) To control */
type: ControlType;
/** The parameter setting for the feature */
value: number;
}