toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allowedDeviceManagementLevels = this.allowedDeviceManagementLevels;
  final allowedEncryptionStatuses = this.allowedEncryptionStatuses;
  final osConstraints = this.osConstraints;
  final requireAdminApproval = this.requireAdminApproval;
  final requireCorpOwned = this.requireCorpOwned;
  final requireScreenlock = this.requireScreenlock;
  return {
    'allowedDeviceManagementLevels': ?allowedDeviceManagementLevels,
    'allowedEncryptionStatuses': ?allowedEncryptionStatuses,
    'osConstraints': ?osConstraints,
    'requireAdminApproval': ?requireAdminApproval,
    'requireCorpOwned': ?requireCorpOwned,
    'requireScreenlock': ?requireScreenlock,
  };
}