com.aliyun.dingtalkdrive_1_0.models.GetPreviewInfoResponseBody 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.dingtalkdrive_1_0.models;
import com.aliyun.tea.*;
public class GetPreviewInfoResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("info")
public GetPreviewInfoResponseBodyInfo info;
public static GetPreviewInfoResponseBody build(java.util.Map map) throws Exception {
GetPreviewInfoResponseBody self = new GetPreviewInfoResponseBody();
return TeaModel.build(map, self);
}
public GetPreviewInfoResponseBody setInfo(GetPreviewInfoResponseBodyInfo info) {
this.info = info;
return this;
}
public GetPreviewInfoResponseBodyInfo getInfo() {
return this.info;
}
public static class GetPreviewInfoResponseBodyInfo extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("url")
public String url;
public static GetPreviewInfoResponseBodyInfo build(java.util.Map map) throws Exception {
GetPreviewInfoResponseBodyInfo self = new GetPreviewInfoResponseBodyInfo();
return TeaModel.build(map, self);
}
public GetPreviewInfoResponseBodyInfo setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}
}