com.alipay.api.domain.AnttechBlockchainDefinSaasAccountUnbindModel 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-11-22 14:50:02
*/
public class AnttechBlockchainDefinSaasAccountUnbindModel extends AlipayObject {
private static final long serialVersionUID = 3479146834249866251L;
/**
* 户名
*/
@ApiField("account_name")
private String accountName;
/**
* 账号
*/
@ApiField("account_no")
private String accountNo;
/**
* 银行代码
*/
@ApiField("inst_id")
private String instId;
/**
* 外部业务平台会员ID
*/
@ApiField("out_member_id")
private ReferenceId outMemberId;
/**
* 会员所属业务平台在智能科技的会员ID
*/
@ApiField("platform_member_id")
private String platformMemberId;
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
}
public String getAccountNo() {
return this.accountNo;
}
public void setAccountNo(String accountNo) {
this.accountNo = accountNo;
}
public String getInstId() {
return this.instId;
}
public void setInstId(String instId) {
this.instId = instId;
}
public ReferenceId getOutMemberId() {
return this.outMemberId;
}
public void setOutMemberId(ReferenceId outMemberId) {
this.outMemberId = outMemberId;
}
public String getPlatformMemberId() {
return this.platformMemberId;
}
public void setPlatformMemberId(String platformMemberId) {
this.platformMemberId = platformMemberId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy