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

com.aliyun.dingtalkesign_2_0.models.GetExecuteUrlResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.50
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkesign_2_0.models;

import com.aliyun.tea.*;

public class GetExecuteUrlResponseBody extends TeaModel {
    @NameInMap("longUrl")
    public String longUrl;

    @NameInMap("mobileUrl")
    public String mobileUrl;

    @NameInMap("pcUrl")
    public String pcUrl;

    @NameInMap("shortUrl")
    public String shortUrl;

    public static GetExecuteUrlResponseBody build(java.util.Map map) throws Exception {
        GetExecuteUrlResponseBody self = new GetExecuteUrlResponseBody();
        return TeaModel.build(map, self);
    }

    public GetExecuteUrlResponseBody setLongUrl(String longUrl) {
        this.longUrl = longUrl;
        return this;
    }
    public String getLongUrl() {
        return this.longUrl;
    }

    public GetExecuteUrlResponseBody setMobileUrl(String mobileUrl) {
        this.mobileUrl = mobileUrl;
        return this;
    }
    public String getMobileUrl() {
        return this.mobileUrl;
    }

    public GetExecuteUrlResponseBody setPcUrl(String pcUrl) {
        this.pcUrl = pcUrl;
        return this;
    }
    public String getPcUrl() {
        return this.pcUrl;
    }

    public GetExecuteUrlResponseBody setShortUrl(String shortUrl) {
        this.shortUrl = shortUrl;
        return this;
    }
    public String getShortUrl() {
        return this.shortUrl;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy