com.aliyun.dingtalkdingmi_1_0.models.PushCustomerGroupMessageRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdingmi_1_0.models;
import com.aliyun.tea.*;
public class PushCustomerGroupMessageRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* cidxxxx
*/
@NameInMap("conversationId")
public String conversationId;
/**
* This parameter is required.
*
* example:
* sampleText
*/
@NameInMap("msgKey")
public String msgKey;
/**
* This parameter is required.
*
* example:
* eyJjb250ZW50IjogIua1i+ivleWGheWuuSJ9(即{"content": "测试内容"}的base64编码值)
*/
@NameInMap("msgParam")
public String msgParam;
public static PushCustomerGroupMessageRequest build(java.util.Map map) throws Exception {
PushCustomerGroupMessageRequest self = new PushCustomerGroupMessageRequest();
return TeaModel.build(map, self);
}
public PushCustomerGroupMessageRequest setConversationId(String conversationId) {
this.conversationId = conversationId;
return this;
}
public String getConversationId() {
return this.conversationId;
}
public PushCustomerGroupMessageRequest setMsgKey(String msgKey) {
this.msgKey = msgKey;
return this;
}
public String getMsgKey() {
return this.msgKey;
}
public PushCustomerGroupMessageRequest setMsgParam(String msgParam) {
this.msgParam = msgParam;
return this;
}
public String getMsgParam() {
return this.msgParam;
}
}