com.dingtalk.api.request.OapiImpaasNewretailSendstaffgroupmessageRequest Maven / Gradle / Ivy
The newest version!
package com.dingtalk.api.request;
import com.taobao.api.internal.util.json.JSONValidatingReader;
import java.util.Map;
import java.util.List;
import com.taobao.api.ApiRuleException;
import com.taobao.api.BaseTaobaoRequest;
import com.dingtalk.api.DingTalkConstants;
import com.taobao.api.Constants;
import com.taobao.api.internal.util.TaobaoHashMap;
import com.taobao.api.internal.util.TaobaoUtils;
import com.dingtalk.api.response.OapiImpaasNewretailSendstaffgroupmessageResponse;
/**
* TOP DingTalk-API: dingtalk.oapi.impaas.newretail.sendstaffgroupmessage request
*
* @author top auto create
* @since 1.0, 2019.07.03
*/
public class OapiImpaasNewretailSendstaffgroupmessageRequest extends BaseTaobaoRequest {
/**
* 加密后的群号
*/
private String chatId;
/**
* 消息内容
*/
private String content;
/**
* 消息类型
*/
private Long msgType;
/**
* 系统账号名
*/
private String sender;
public void setChatId(String chatId) {
this.chatId = chatId;
}
public String getChatId() {
return this.chatId;
}
public void setContent(String content) {
this.content = content;
}
public void setContentString(String content) {
this.content = content;
}
public String getContent() {
return this.content;
}
public void setMsgType(Long msgType) {
this.msgType = msgType;
}
public Long getMsgType() {
return this.msgType;
}
public void setSender(String sender) {
this.sender = sender;
}
public String getSender() {
return this.sender;
}
public String getApiMethodName() {
return "dingtalk.oapi.impaas.newretail.sendstaffgroupmessage";
}
private String topResponseType = Constants.RESPONSE_TYPE_DINGTALK_OAPI;
public String getTopResponseType() {
return this.topResponseType;
}
public void setTopResponseType(String topResponseType) {
this.topResponseType = topResponseType;
}
public String getTopApiCallType() {
return DingTalkConstants.CALL_TYPE_OAPI;
}
private String topHttpMethod = DingTalkConstants.HTTP_METHOD_POST;
public String getTopHttpMethod() {
return this.topHttpMethod;
}
public void setTopHttpMethod(String topHttpMethod) {
this.topHttpMethod = topHttpMethod;
}
public void setHttpMethod(String httpMethod) {
this.setTopHttpMethod(httpMethod);
}
public Map getTextParams() {
TaobaoHashMap txtParams = new TaobaoHashMap();
txtParams.put("chat_id", this.chatId);
txtParams.put("content", this.content);
txtParams.put("msg_type", this.msgType);
txtParams.put("sender", this.sender);
if(this.udfParams != null) {
txtParams.putAll(this.udfParams);
}
return txtParams;
}
public Class getResponseClass() {
return OapiImpaasNewretailSendstaffgroupmessageResponse.class;
}
public void check() throws ApiRuleException {
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy