com.aliyun.dingtalkimpaas_1_0.models.RecallMessageRequest 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.dingtalkimpaas_1_0.models;
import com.aliyun.tea.*;
public class RecallMessageRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("messageId")
public String messageId;
/**
* This parameter is required.
*/
@NameInMap("operatorUid")
public String operatorUid;
@NameInMap("type")
public Integer type;
public static RecallMessageRequest build(java.util.Map map) throws Exception {
RecallMessageRequest self = new RecallMessageRequest();
return TeaModel.build(map, self);
}
public RecallMessageRequest setMessageId(String messageId) {
this.messageId = messageId;
return this;
}
public String getMessageId() {
return this.messageId;
}
public RecallMessageRequest setOperatorUid(String operatorUid) {
this.operatorUid = operatorUid;
return this;
}
public String getOperatorUid() {
return this.operatorUid;
}
public RecallMessageRequest setType(Integer type) {
this.type = type;
return this;
}
public Integer getType() {
return this.type;
}
}