com.alipay.api.response.ZhimaCreditContractPrincipalQueryResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.credit.contract.principal.query response.
*
* @author auto create
* @since 1.0, 2024-07-04 15:51:35
*/
public class ZhimaCreditContractPrincipalQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 2754891853278987997L;
/**
* 是否需要授权。仅当mode=1时需要进行处理,此时用户需要手动在手机上完成授权操作,商户可在机具上给出相关提示,如:请在手机上确认。
*/
@ApiField("need_auth")
private String needAuth;
/**
* 扫码模式下返回的url。此时需要商户将该url转换为二维码,用户用支付宝扫码即可进行接下来的业务流程。
*/
@ApiField("url")
private String url;
public void setNeedAuth(String needAuth) {
this.needAuth = needAuth;
}
public String getNeedAuth( ) {
return this.needAuth;
}
public void setUrl(String url) {
this.url = url;
}
public String getUrl( ) {
return this.url;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy