@c8y/client
Version:
Client application programming interface to access the Cumulocity IoT-Platform REST services.
24 lines • 568 B
TypeScript
import { OperationStatus } from './OperationStatus.js';
/**
* Interface to gather all mandantory fragments to
* have a valid operation.
*/
export interface IOperation {
/**
* Identifier for operation
*/
id?: string | number;
/**
* Identifies the target device on which this operation should be performed
*/
deviceId: string;
/**
* Status of operation, see [[OperationStatus]]
*/
status?: OperationStatus;
/**
* Custom fragments
*/
[]: any;
}
//# sourceMappingURL=IOperation.d.ts.map