diff --git a/Kleer/Models/Kleer.Models.cs b/Kleer/Models/Kleer.Models.cs
index 952e75c..5861112 100644
--- a/Kleer/Models/Kleer.Models.cs
+++ b/Kleer/Models/Kleer.Models.cs
@@ -5628,9 +5628,30 @@ public bool DimensionEntriesSpecified
}
}
+ ///
+ /// Sets the manager of this payroll user. Skip to leave the current manager as is.
+ /// The id must reference an existing user in this company; an omitted, null or zero id
+ /// is rejected. Use remove-manager-user to remove the current manager.
+ ///
+ [System.ComponentModel.DescriptionAttribute(("Sets the manager of this payroll user. Skip to leave the current manager as is. T" +
+ "he id must reference an existing user in this company; an omitted, null or zero " +
+ "id is rejected. Use remove-manager-user to remove the current manager."))]
[System.Xml.Serialization.XmlElementAttribute("manager-user", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public UserReference ManagerUser { get; set; }
+ ///
+ /// Set to true to remove the current manager. Mutually exclusive with manager-user.
+ ///
+ [System.ComponentModel.DescriptionAttribute("Set to true to remove the current manager. Mutually exclusive with manager-user.")]
+ [System.Xml.Serialization.XmlElementAttribute("remove-manager-user", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
+ public bool RemoveManagerUser { get; set; }
+
+ ///
+ /// Gets or sets a value indicating whether the RemoveManagerUser property is specified.
+ ///
+ [System.Xml.Serialization.XmlIgnoreAttribute()]
+ public bool RemoveManagerUserSpecified { get; set; }
+
[System.Xml.Serialization.XmlElementAttribute("vacation-entitlement", Form=System.Xml.Schema.XmlSchemaForm.Unqualified)]
public VacationEntitlement VacationEntitlement { get; set; }
diff --git a/Kleer/doc.xsd b/Kleer/doc.xsd
index ea983ba..aeab959 100644
--- a/Kleer/doc.xsd
+++ b/Kleer/doc.xsd
@@ -2383,8 +2383,22 @@
-
-
+
+
+
+ Sets the manager of this payroll user. Skip to leave the current manager as is.
+ The id must reference an existing user in this company; an omitted, null or zero id
+ is rejected. Use remove-manager-user to remove the current manager.
+
+
+
+
+
+
+ Set to true to remove the current manager. Mutually exclusive with manager-user.
+
+
+