diff --git a/Krs.Ats.IBNet/Enums/ExecutionSide.cs b/Krs.Ats.IBNet/Enums/ExecutionSide.cs
index dac69e1..8dc777b 100644
--- a/Krs.Ats.IBNet/Enums/ExecutionSide.cs
+++ b/Krs.Ats.IBNet/Enums/ExecutionSide.cs
@@ -17,6 +17,33 @@ public enum ExecutionSide
///
/// Securities were sold.
///
- [Description("SLD")] Sold
+ [Description("SLD")] Sold,
+
+ ///
+ /// Securities were lent.
+ ///
+ [Description("LEND")] Lend,
+
+ ///
+ /// Securities were borrowed.
+ ///
+ [Description("BORROW")] Borrow,
+
+ ///
+ /// Securities were recalled.
+ ///
+ [Description("RECALL")] Recall,
+
+ ///
+ /// Securities were rerated.
+ ///
+ [Description("RERATE")]
+ Rerate,
+
+ ///
+ /// Securities were returned.
+ ///
+ [Description("RETURN")]
+ Return
}
}
\ No newline at end of file