com.aliyun.dingtalkservice_group_1_0.models.SendServiceGroupMessageResponseBody 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.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class SendServiceGroupMessageResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* msgxxxxxx==
*/
@NameInMap("openMsgTaskId")
public String openMsgTaskId;
public static SendServiceGroupMessageResponseBody build(java.util.Map map) throws Exception {
SendServiceGroupMessageResponseBody self = new SendServiceGroupMessageResponseBody();
return TeaModel.build(map, self);
}
public SendServiceGroupMessageResponseBody setOpenMsgTaskId(String openMsgTaskId) {
this.openMsgTaskId = openMsgTaskId;
return this;
}
public String getOpenMsgTaskId() {
return this.openMsgTaskId;
}
}