Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

企微的创建企业群发接口WxCpMsgTemplate新增了chat_id_list和allow_select两个参数 #3145

Merged
merged 1 commit into from
Oct 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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