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

com.aliyun.dingtalkdoc_2_0.models.ShareUrlResponseBody 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.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: *

http://example.com

*/ @NameInMap("mobileUrl") public String mobileUrl; /** * example: *

http://example.com

*/ @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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy