We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29cd46d commit 9f879bbCopy full SHA for 9f879bb
1 file changed
src/test/java/com/imsweb/seerapi/client/Range.java
@@ -12,6 +12,10 @@ public class Range {
12
@JsonProperty("high")
13
protected String _highValue;
14
15
+ public Range() {
16
+ // the object mapper needs this defined
17
+ }
18
+
19
public Range(String low, String high) {
20
setLowValue(low);
21
setHighValue(high);
0 commit comments