com.aliyun.dingtalkimpaas_1_0.models.GetSpaceFileUrlResponseBody 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.dingtalkimpaas_1_0.models;
import com.aliyun.tea.*;
public class GetSpaceFileUrlResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("headers")
public java.util.Map headers;
/**
* This parameter is required.
*/
@NameInMap("internalResourceUrl")
public String internalResourceUrl;
/**
* This parameter is required.
*/
@NameInMap("resourceUrl")
public String resourceUrl;
public static GetSpaceFileUrlResponseBody build(java.util.Map map) throws Exception {
GetSpaceFileUrlResponseBody self = new GetSpaceFileUrlResponseBody();
return TeaModel.build(map, self);
}
public GetSpaceFileUrlResponseBody setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public GetSpaceFileUrlResponseBody setInternalResourceUrl(String internalResourceUrl) {
this.internalResourceUrl = internalResourceUrl;
return this;
}
public String getInternalResourceUrl() {
return this.internalResourceUrl;
}
public GetSpaceFileUrlResponseBody setResourceUrl(String resourceUrl) {
this.resourceUrl = resourceUrl;
return this;
}
public String getResourceUrl() {
return this.resourceUrl;
}
}