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

com.antgroup.antchain.openapi.riskplus.models.ShortUrlInfo Maven / Gradle / Ivy

There is a newer version: 1.20.2
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;

import com.aliyun.tea.*;

public class ShortUrlInfo extends TeaModel {
    // 支持卡片短信的手机号
    @NameInMap("mobile")
    @Validation(required = true)
    public String mobile;

    // 解析生成的短链
    @NameInMap("short_url")
    @Validation(required = true)
    public String shortUrl;

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

    public ShortUrlInfo setMobile(String mobile) {
        this.mobile = mobile;
        return this;
    }
    public String getMobile() {
        return this.mobile;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy