@c8y/client
Version:
Client application programming interface to access the Cumulocity IoT-Platform REST services.
27 lines • 567 B
TypeScript
export interface IDeviceRegistrationBulkResult {
/**
* Result list of updated credentials
*/
credentialUpdatedList: any[];
/**
* Failed creations as list
*/
failedCreationList: any[];
/**
* Count of all results
*/
numberOfAll: number;
/**
* Count of newly created
*/
numberOfCreated: number;
/**
* Count of failed
*/
numberOfFailed: number;
/**
* Count of successful
*/
numberOfSuccessful: number;
}
//# sourceMappingURL=IDeviceRegistrationBulkResult.d.ts.map