All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkrobot_1_0.models.RobotSendDingResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy