Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
yamin8000 committed Jan 1, 2022
1 parent 7f5f4d7 commit bfc0fa0
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
package io.githhub.TradersTeam.grand_node_java_client.enums;

public enum BackorderMode {
NoBackOrders(0),
AllowQtyBelowZero(1);

final int value;

BackorderMode(int value) {
this.value = value;
}
}

0 comments on commit bfc0fa0

Please sign in to comment.