Merge pull request 'iOS user enrollment support' (#143) from inosh/device-mgt-core:ios-user-enrollment into master

Reviewed-on: community/device-mgt-core#143
vpp-v2
Inosh Perara 1 year ago
commit b0dfadbe68

@ -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; }

Loading…
Cancel
Save