com.antgroup.antchain.openapi.riskplus.models.ShortUrlInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-riskplus Show documentation
Show all versions of openapi-riskplus Show documentation
Ant Chain RISKPLUS SDK for Java
// 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 - 2025 Weber Informatics LLC | Privacy Policy