com.aliyun.dingtalkim_1_0.models.QueryMessageSendResultRequest 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.dingtalkim_1_0.models;
import com.aliyun.tea.*;
public class QueryMessageSendResultRequest extends TeaModel {
/**
* example:
* dhowhi23ohdh==
*/
@NameInMap("openTaskId")
public String openTaskId;
public static QueryMessageSendResultRequest build(java.util.Map map) throws Exception {
QueryMessageSendResultRequest self = new QueryMessageSendResultRequest();
return TeaModel.build(map, self);
}
public QueryMessageSendResultRequest setOpenTaskId(String openTaskId) {
this.openTaskId = openTaskId;
return this;
}
public String getOpenTaskId() {
return this.openTaskId;
}
}