Skip to content

Commit 02540b7

Browse files
authored
Fix booleans (#47)
* Fix booleans
1 parent 523f79b commit 02540b7

File tree

1 file changed

+7
-0
lines changed
  • src/main/java/me/alexpresso/zuninja/domain/nodes/item

1 file changed

+7
-0
lines changed

src/main/java/me/alexpresso/zuninja/domain/nodes/item/Item.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,19 @@ public class Item extends BaseGraphObject implements ActionElement {
3131
private Set<String> urls;
3232
private int score;
3333
private int scoreGolden;
34+
@JsonProperty("isCounting")
3435
private boolean counting;
36+
@JsonProperty("isCraftable")
3537
private boolean craftable;
38+
@JsonProperty("isInvocable")
3639
private boolean invocable;
40+
@JsonProperty("isRecyclable")
3741
private boolean recyclable;
42+
@JsonProperty("isTradable")
3843
private boolean tradable;
44+
@JsonProperty("isGoldable")
3945
private boolean goldable;
46+
@JsonProperty("isUpgradable")
4047
private boolean upgradable;
4148

4249

0 commit comments

Comments
 (0)