File tree 2 files changed +13
-0
lines changed
main/java/me/chanjar/weixin/cp/bean/message
test/java/me/chanjar/weixin/cp/api/impl
2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,9 @@ public static WxCpMessageSendResult fromJson(String json) {
50
50
@ SerializedName ("invalidtag" )
51
51
private String invalidTag ;
52
52
53
+ @ SerializedName ("unlicenseduser" )
54
+ private String unlicensedUser ;
55
+
53
56
@ SerializedName ("msgid" )
54
57
private String msgId ;
55
58
@@ -93,4 +96,13 @@ public List<String> getInvalidPartyList() {
93
96
public List <String > getInvalidTagList () {
94
97
return this .content2List (this .invalidTag );
95
98
}
99
+
100
+ /**
101
+ * Gets unlicensed user list.
102
+ *
103
+ * @return the unlicensed user list
104
+ */
105
+ public List <String > getUnlicensedUserList () {
106
+ return this .content2List (this .unlicensedUser );
107
+ }
96
108
}
Original file line number Diff line number Diff line change @@ -80,6 +80,7 @@ public void testSendMessage() throws WxErrorException {
80
80
System .out .println (messageSendResult .getInvalidPartyList ());
81
81
System .out .println (messageSendResult .getInvalidUserList ());
82
82
System .out .println (messageSendResult .getInvalidTagList ());
83
+ System .out .println (messageSendResult .getUnlicensedUserList ());
83
84
}
84
85
85
86
/**
You can’t perform that action at this time.
0 commit comments