Interface IDeviceRegistrationBulkResult

interface IDeviceRegistrationBulkResult {
    credentialUpdatedList: any[];
    failedCreationList: any[];
    numberOfAll: number;
    numberOfCreated: number;
    numberOfFailed: number;
    numberOfSuccessful: number;
}

Properties

credentialUpdatedList: any[]

Result list of updated credentials

failedCreationList: any[]

Failed creations as list

numberOfAll: number

Count of all results

numberOfCreated: number

Count of newly created

numberOfFailed: number

Count of failed

numberOfSuccessful: number

Count of successful