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