|
|
@ -18,10 +18,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
package io.entgra.device.mgt.core.device.mgt.common.general;
|
|
|
|
package io.entgra.device.mgt.core.device.mgt.common.general;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
|
|
|
|
public class QREnrollmentDetails {
|
|
|
|
public class QREnrollmentDetails {
|
|
|
|
String ownershipType;
|
|
|
|
String ownershipType;
|
|
|
|
String username;
|
|
|
|
String username;
|
|
|
|
String enrollmentMode;
|
|
|
|
String enrollmentMode;
|
|
|
|
|
|
|
|
Map<String, String> customValues;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public Map<String, String> getCustomValues() {
|
|
|
|
|
|
|
|
return customValues;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public void setCustomValues(Map<String, String> customValues) {
|
|
|
|
|
|
|
|
this.customValues = customValues;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public String getOwnershipType() { return ownershipType; }
|
|
|
|
public String getOwnershipType() { return ownershipType; }
|
|
|
|
|
|
|
|
|
|
|
|