
com.aliyun.dingtalkrobot_1_0.models.RobotMessageFileDownloadResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkrobot_1_0.models;
import com.aliyun.tea.*;
public class RobotMessageFileDownloadResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("downloadUrl")
public String downloadUrl;
public static RobotMessageFileDownloadResponseBody build(java.util.Map map) throws Exception {
RobotMessageFileDownloadResponseBody self = new RobotMessageFileDownloadResponseBody();
return TeaModel.build(map, self);
}
public RobotMessageFileDownloadResponseBody setDownloadUrl(String downloadUrl) {
this.downloadUrl = downloadUrl;
return this;
}
public String getDownloadUrl() {
return this.downloadUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy