com.alipay.api.response.AlipayTradeServiceSignQueryResponse 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.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.AgreementTextInfo;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.trade.service.sign.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:33:12
*/
public class AlipayTradeServiceSignQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 7548146818163371586L;
/**
* 如果协议未签约时,会返回协议文本对应的标题和URL
*/
@ApiListField("agreement_text_infos")
@ApiField("agreement_text_info")
private List agreementTextInfos;
/**
* 产品是否已经签约。
已签约-SIGNED
未签约-UNSIGNED
未签约且未开通网商二类户-UNSIGNED_UNOPEN_ANTBANK_ACCOUNT
*/
@ApiField("sign_result")
private String signResult;
/**
* 子业务类型,标识该场景下的渠道模式。
SHBANK:上海银行模式
ANTBANK:网商银行模式
*/
@ApiField("sub_biz_type")
private String subBizType;
public void setAgreementTextInfos(List agreementTextInfos) {
this.agreementTextInfos = agreementTextInfos;
}
public List getAgreementTextInfos( ) {
return this.agreementTextInfos;
}
public void setSignResult(String signResult) {
this.signResult = signResult;
}
public String getSignResult( ) {
return this.signResult;
}
public void setSubBizType(String subBizType) {
this.subBizType = subBizType;
}
public String getSubBizType( ) {
return this.subBizType;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy