com.aliyun.dingtalkrobot_1_0.models.RobotSendDingResponseBody 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.dingtalkrobot_1_0.models;
import com.aliyun.tea.*;
public class RobotSendDingResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("failedList")
public java.util.Map failedList;
/**
* This parameter is required.
*/
@NameInMap("openDingId")
public String openDingId;
public static RobotSendDingResponseBody build(java.util.Map map) throws Exception {
RobotSendDingResponseBody self = new RobotSendDingResponseBody();
return TeaModel.build(map, self);
}
public RobotSendDingResponseBody setFailedList(java.util.Map failedList) {
this.failedList = failedList;
return this;
}
public java.util.Map getFailedList() {
return this.failedList;
}
public RobotSendDingResponseBody setOpenDingId(String openDingId) {
this.openDingId = openDingId;
return this;
}
public String getOpenDingId() {
return this.openDingId;
}
}