com.aliyun.dingtalkdoc_2_0.models.ShareUrlResponseBody 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.dingtalkdoc_2_0.models;
import com.aliyun.tea.*;
public class ShareUrlResponseBody extends TeaModel {
/**
* example:
* shareUrlInfo
*/
@NameInMap("shareUrlInfo")
public ShareUrlResponseBodyShareUrlInfo shareUrlInfo;
public static ShareUrlResponseBody build(java.util.Map map) throws Exception {
ShareUrlResponseBody self = new ShareUrlResponseBody();
return TeaModel.build(map, self);
}
public ShareUrlResponseBody setShareUrlInfo(ShareUrlResponseBodyShareUrlInfo shareUrlInfo) {
this.shareUrlInfo = shareUrlInfo;
return this;
}
public ShareUrlResponseBodyShareUrlInfo getShareUrlInfo() {
return this.shareUrlInfo;
}
public static class ShareUrlResponseBodyShareUrlInfo extends TeaModel {
/**
* example:
*
*/
@NameInMap("mobileUrl")
public String mobileUrl;
/**
* example:
*
*/
@NameInMap("pcUrl")
public String pcUrl;
public static ShareUrlResponseBodyShareUrlInfo build(java.util.Map map) throws Exception {
ShareUrlResponseBodyShareUrlInfo self = new ShareUrlResponseBodyShareUrlInfo();
return TeaModel.build(map, self);
}
public ShareUrlResponseBodyShareUrlInfo setMobileUrl(String mobileUrl) {
this.mobileUrl = mobileUrl;
return this;
}
public String getMobileUrl() {
return this.mobileUrl;
}
public ShareUrlResponseBodyShareUrlInfo setPcUrl(String pcUrl) {
this.pcUrl = pcUrl;
return this;
}
public String getPcUrl() {
return this.pcUrl;
}
}
}