diff --git a/src/Geo.Here/Enums/ResultType.cs b/src/Geo.Here/Enums/ResultType.cs
index a94aef6..2fe92e4 100644
--- a/src/Geo.Here/Enums/ResultType.cs
+++ b/src/Geo.Here/Enums/ResultType.cs
@@ -47,5 +47,29 @@ public enum ResultType
///
[EnumMember(Value = "place")]
Place,
+
+ ///
+ /// Indicates the intersection of multiple streets.
+ ///
+ [EnumMember(Value = "intersection")]
+ Intersection,
+
+ ///
+ /// Indicates a postal code result.
+ ///
+ [EnumMember(Value = "postalCodePoint")]
+ PostalCodePoint,
+
+ ///
+ /// Indicates a chain query response.
+ ///
+ [EnumMember(Value = "chainQuery")]
+ ChainQuery,
+
+ ///
+ /// Indicates a category response.
+ ///
+ [EnumMember(Value = "categoryQuery")]
+ CategoryQuery,
}
}