Skip to content

Commit

Permalink
Fix booleans (#47)
Browse files Browse the repository at this point in the history
* Fix booleans
  • Loading branch information
AlexPresso authored Dec 29, 2024
1 parent 523f79b commit 02540b7
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,19 @@ public class Item extends BaseGraphObject implements ActionElement {
private Set<String> urls;
private int score;
private int scoreGolden;
@JsonProperty("isCounting")
private boolean counting;
@JsonProperty("isCraftable")
private boolean craftable;
@JsonProperty("isInvocable")
private boolean invocable;
@JsonProperty("isRecyclable")
private boolean recyclable;
@JsonProperty("isTradable")
private boolean tradable;
@JsonProperty("isGoldable")
private boolean goldable;
@JsonProperty("isUpgradable")
private boolean upgradable;


Expand Down

0 comments on commit 02540b7

Please sign in to comment.