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 373aa77 commit 226c2afCopy full SHA for 226c2af
weixin-java-cp/src/main/java/me/chanjar/weixin/cp/bean/external/WxCpUserTransferResultResp.java
@@ -7,6 +7,7 @@
7
import me.chanjar.weixin.cp.util.json.WxCpGsonBuilder;
8
9
import java.io.Serializable;
10
+import java.util.List;
11
12
/**
13
* 在职成员的客户转接情况
@@ -21,6 +22,8 @@ public class WxCpUserTransferResultResp extends WxCpBaseResp {
21
22
@SerializedName("next_cursor")
23
private String nextCursor;
24
25
+ private List<TransferResult> customer;
26
+
27
public static WxCpUserTransferResultResp fromJson(String json) {
28
return WxCpGsonBuilder.create().fromJson(json, WxCpUserTransferResultResp.class);
29
}
0 commit comments