Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,13 @@
</details>


<details>
<summary>Added Enum(s)</summary>

- added enum `Canceled` to type `ShipmentState`
</details>


<details>
<summary>Added Property(s)</summary>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13136,6 +13136,7 @@ input SetZoneKey {

enum ShipmentState {
Backorder
Canceled
Delayed
Delivered
Partial
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,9 @@ public interface ShipmentState extends JsonEnum {
/**
<p>Indicates that items in the Order are not in stock and will be delivered once the items are restocked.</p> */
ShipmentState BACKORDER = ShipmentStateEnum.BACKORDER;
/**
<p>Indicates that the shipment of the Order is canceled.</p> */
ShipmentState CANCELED = ShipmentStateEnum.CANCELED;

/**
* possible values of ShipmentState
Expand Down Expand Up @@ -75,7 +78,12 @@ enum ShipmentStateEnum implements ShipmentState {
/**
* Backorder
*/
BACKORDER("Backorder");
BACKORDER("Backorder"),

/**
* Canceled
*/
CANCELED("Canceled");
private final String jsonName;

private ShipmentStateEnum(final String jsonName) {
Expand Down
1 change: 1 addition & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -342,3 +342,4 @@ df53588d26d7953dfdf44166866ca03045f0a70b
269027575a6fd5a2a29387930064a06f22f09bbf
9c2f053d7f45e95984760f59a344e9630d90d843
f4f3c42381257c319000e05bd5b61074d18b0a5f
9066fb1012d20a92037e102e18a6295bdbcb82e3
Loading