Skip to content

Commit

Permalink
fix(here): Adding missing enum values on ResultType (#72)
Browse files Browse the repository at this point in the history
  • Loading branch information
Farthom authored Apr 13, 2023
1 parent 6f47d9a commit e7ed451
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/Geo.Here/Enums/ResultType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,29 @@ public enum ResultType
/// </summary>
[EnumMember(Value = "place")]
Place,

/// <summary>
/// Indicates the intersection of multiple streets.
/// </summary>
[EnumMember(Value = "intersection")]
Intersection,

/// <summary>
/// Indicates a postal code result.
/// </summary>
[EnumMember(Value = "postalCodePoint")]
PostalCodePoint,

/// <summary>
/// Indicates a chain query response.
/// </summary>
[EnumMember(Value = "chainQuery")]
ChainQuery,

/// <summary>
/// Indicates a category response.
/// </summary>
[EnumMember(Value = "categoryQuery")]
CategoryQuery,
}
}

0 comments on commit e7ed451

Please sign in to comment.