All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.response.AlipayFinancialnetAuthSpaccountConsultResponse Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.response;

import com.alipay.api.internal.mapping.ApiField;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.financialnet.auth.spaccount.consult response.
 * 
 * @author auto create
 * @since 1.0, 2024-12-13 15:07:21
 */
public class AlipayFinancialnetAuthSpaccountConsultResponse extends AlipayResponse {

	private static final long serialVersionUID = 2322182325537959548L;

	/** 
	 * 若已开户,则为脱敏后已开户登录号
	 */
	@ApiField("display_opened_account_logon_id")
	private String displayOpenedAccountLogonId;

	/** 
	 * 若调用finsign服务失败,返回错误码
	 */
	@ApiField("error_code")
	private String errorCode;

	/** 
	 * 调用finsign业务失败时,返回的错误文案
	 */
	@ApiField("error_message")
	private String errorMessage;

	/** 
	 * 若返回true说明调用finsign此服务成功
	 */
	@ApiField("is_success")
	private Boolean isSuccess;

	/** 
	 * 返回是否已开户,若为true则说明已开户
	 */
	@ApiField("opened_account")
	private Boolean openedAccount;

	/** 
	 * 已开专户的uid
	 */
	@ApiField("opened_account_user_id")
	private String openedAccountUserId;

	/** 
	 * 已开专户的uid对应的openId
	 */
	@ApiField("opened_account_user_open_id")
	private String openedAccountUserOpenId;

	public void setDisplayOpenedAccountLogonId(String displayOpenedAccountLogonId) {
		this.displayOpenedAccountLogonId = displayOpenedAccountLogonId;
	}
	public String getDisplayOpenedAccountLogonId( ) {
		return this.displayOpenedAccountLogonId;
	}

	public void setErrorCode(String errorCode) {
		this.errorCode = errorCode;
	}
	public String getErrorCode( ) {
		return this.errorCode;
	}

	public void setErrorMessage(String errorMessage) {
		this.errorMessage = errorMessage;
	}
	public String getErrorMessage( ) {
		return this.errorMessage;
	}

	public void setIsSuccess(Boolean isSuccess) {
		this.isSuccess = isSuccess;
	}
	public Boolean getIsSuccess( ) {
		return this.isSuccess;
	}

	public void setOpenedAccount(Boolean openedAccount) {
		this.openedAccount = openedAccount;
	}
	public Boolean getOpenedAccount( ) {
		return this.openedAccount;
	}

	public void setOpenedAccountUserId(String openedAccountUserId) {
		this.openedAccountUserId = openedAccountUserId;
	}
	public String getOpenedAccountUserId( ) {
		return this.openedAccountUserId;
	}

	public void setOpenedAccountUserOpenId(String openedAccountUserOpenId) {
		this.openedAccountUserOpenId = openedAccountUserOpenId;
	}
	public String getOpenedAccountUserOpenId( ) {
		return this.openedAccountUserOpenId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy