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 a7a6863 commit 0c71386Copy full SHA for 0c71386
jsmpp/src/main/java/org/jsmpp/bean/OptionalParameter.java
@@ -1911,14 +1911,16 @@ public static class Message_state extends OptionalParameter.Byte {
1911
*
1912
*/
1913
public enum Message_state_enum {
1914
+ SCHEDULED(0),
1915
ENROUTE(1),
1916
DELIVERED(2),
1917
EXPIRED(3),
1918
DELETED(4),
1919
UNDELIVERABLE(5),
1920
ACCEPTED(6),
1921
UNKNOWN(7),
- REJECTED(8);
1922
+ REJECTED(8),
1923
+ SKIPPED(9);
1924
1925
private byte value;
1926
@@ -1997,7 +1999,6 @@ public static class Billing_identification extends OptionalParameter.OctetString
1997
1999
public Billing_identification(byte[] value) {
1998
2000
super(Tag.BILLING_IDENTIFICATION.code, value);
2001
}
-
2002
2003
2004
0 commit comments