com.alipay.api.domain.MybankCreditLoantradePayeeArConsultModel 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, 2023-04-11 17:37:24
*/
public class MybankCreditLoantradePayeeArConsultModel extends AlipayObject {
private static final long serialVersionUID = 8476941156921432731L;
/**
* 签约业务场景,网商指定
*/
@ApiField("biz_scene")
private String bizScene;
/**
* 签约业务子场景,网商指定,可选
*/
@ApiField("sub_biz_scene")
private String subBizScene;
/**
* 用户信息
*/
@ApiField("user_info")
private CreditPayUserVO userInfo;
public String getBizScene() {
return this.bizScene;
}
public void setBizScene(String bizScene) {
this.bizScene = bizScene;
}
public String getSubBizScene() {
return this.subBizScene;
}
public void setSubBizScene(String subBizScene) {
this.subBizScene = subBizScene;
}
public CreditPayUserVO getUserInfo() {
return this.userInfo;
}
public void setUserInfo(CreditPayUserVO userInfo) {
this.userInfo = userInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy