Skip to content

Commit

Permalink
🎨 #3145 【企业微信】创建企业群发接口新增chat_id_list和allow_select两个参数
Browse files Browse the repository at this point in the history
  • Loading branch information
qq330496248 authored and binarywang committed Oct 18, 2023
1 parent 98881f2 commit 16eac7e
Showing 1 changed file with 12 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,23 @@ public class WxCpMsgTemplate implements Serializable {
@SerializedName("external_userid")
private List<String> externalUserid;

/**
* 客户群id列表,仅在chat_type为group时有效,最多可一次指定2000个客户群。指定群id之后,收到任务的群主无须再选择客户群,仅对4.1.10及以上版本的企业微信终端生效
*/
@SerializedName("chat_id_list")
private List<String> chatIdList;

/**
* 发送企业群发消息的成员userid,当类型为发送给客户群时必填
*/
private String sender;

/**
* 是否允许成员在待发送客户列表中重新进行选择,默认为false,仅支持客户群发场景
*/
@SerializedName("allow_select")
private Boolean allowSelect;

/**
* 消息文本内容,最多4000个字节
*/
Expand Down

0 comments on commit 16eac7e

Please sign in to comment.