Interface IOperation

Interface to gather all mandantory fragments to have a valid operation.

interface IOperation {
    deviceId: string;
    id?: string | number;
    status?: OperationStatus;
    [key: string]: any;
}

Indexable

  • [key: string]: any

    Custom fragments

Properties

Properties

deviceId: string

Identifies the target device on which this operation should be performed

id?: string | number

Identifier for operation

Status of operation, see [[OperationStatus]]