com.alipay.api.domain.UserAuthAgreement Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 用户授权协议
*
* @author auto create
* @since 1.0, 2022-04-20 15:03:28
*/
public class UserAuthAgreement extends AlipayObject {
private static final long serialVersionUID = 7243794825574141297L;
/**
* 协议名称
*/
@ApiField("agreement_name")
private String agreementName;
/**
* 可下载协议地址
*/
@ApiField("download_link")
private String downloadLink;
/**
* 展示链接地址
*/
@ApiField("link")
private String link;
public String getAgreementName() {
return this.agreementName;
}
public void setAgreementName(String agreementName) {
this.agreementName = agreementName;
}
public String getDownloadLink() {
return this.downloadLink;
}
public void setDownloadLink(String downloadLink) {
this.downloadLink = downloadLink;
}
public String getLink() {
return this.link;
}
public void setLink(String link) {
this.link = link;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy