iOS user enrollment support

Fixes https://roadmap.entgra.net/issues/10149
This commit is contained in:
inoshperera 2023-06-20 23:37:12 +05:30
parent 89132f4824
commit cb99e4c285

View File

@ -18,10 +18,21 @@
package io.entgra.device.mgt.core.device.mgt.common.general;
import java.util.Map;
public class QREnrollmentDetails {
String ownershipType;
String username;
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; }