We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 34fe296 commit 81ca39fCopy full SHA for 81ca39f
src/main/java/com/adyen/model/nexo/EventToNotifyType.java
@@ -153,7 +153,12 @@ public enum EventToNotifyType {
153
/** The terminal has lost its network connection to the POS and is offline. */
154
@XmlEnumValue("NetworkDisconnected")
155
@Schema(description = "The terminal is disconnected from the POS.")
156
- NETWORK_DISCONNECTED("NetworkDisconnected");
+ NETWORK_DISCONNECTED("NetworkDisconnected"),
157
+
158
+ /** Delivers the result (or timeout failure) of the Barcode scan. */
159
+ @XmlEnumValue("ScanBarcodeResult")
160
+ @Schema(description = "Delivers the result (or timeout failure) of the Barcode scan.")
161
+ SCAN_BARCODE_RESULT("ScanBarcodeResult");
162
163
private final String value;
164
0 commit comments