UNPKG

@c8y/client

Version:

Client application programming interface to access the Cumulocity IoT-Platform REST services.

27 lines 560 B
/** * Interface to gather more information about the process * of performed bulk operation. */ export interface IOperationBulkProgress { /** * Count of processed operations */ all: number; /** * Count of pending operations */ pending: number; /** * Count of executing operations */ executing: number; /** * Count of successful operations */ successful: number; /** * Count of failed operations */ failed: number; } //# sourceMappingURL=IOperationBulkProgress.d.ts.map