forked from hubspot-net/HubSpot.NET
-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
0.6.20.1 Minor breaking change. The search operator string has been replaced with an enum. Patched Paging model not being properly deserialised when searching - Thanks to https://github.com/hakimio for spotting this as issue 8 (#8). With upstream development ceasing, attribution from here is now to Chinchilla Software who is maintain this fork. NuGet package names are also shifted from SquaredUp to Chinchilla
- Loading branch information
Showing
8 changed files
with
126 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
using System.Runtime.Serialization; | ||
|
||
namespace HubSpot.NET.Api | ||
{ | ||
public enum SearchRequestFilterOperatorType | ||
{ | ||
[EnumMember(Value = "LT")] | ||
LessThan, | ||
|
||
[EnumMember(Value = "LTE")] | ||
LessThanOrEqualTo, | ||
|
||
[EnumMember(Value = "GT")] | ||
GreaterThan, | ||
|
||
[EnumMember(Value = "GTE")] | ||
GreaterThanOrEqualTo, | ||
|
||
[EnumMember(Value = "EQ")] | ||
EqualTo, | ||
|
||
[EnumMember(Value = "NEQ")] | ||
NotEqualTo, | ||
|
||
[EnumMember(Value = "HAS_PROPERTY")] | ||
HasAValue, | ||
|
||
[EnumMember(Value = "NOT_HAS_PROPERTY")] | ||
DoesNotHaveAValue, | ||
|
||
[EnumMember(Value = "CONTAINS_TOKEN")] | ||
ContainsAToken, | ||
|
||
[EnumMember(Value = "NOT_CONTAINS_TOKEN")] | ||
DoesNotContainAToken | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters