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

com.alipay.api.response.AlipayUserCertifyVerificationQueryResponse 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.user.certify.verification.query response.
 * 
 * @author auto create
 * @since 1.0, 2023-08-24 21:00:38
 */
public class AlipayUserCertifyVerificationQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 7286276179593772466L;

	/** 
	 * 核验不一致原因
	 */
	@ApiField("mismatch_reason")
	private String mismatchReason;

	/** 
	 * 核验网络结果码
	 */
	@ApiField("result_code")
	private String resultCode;

	/** 
	 * 业务结果信息
	 */
	@ApiField("result_msg")
	private String resultMsg;

	/** 
	 * 核验比对分数
	 */
	@ApiField("score")
	private String score;

	/** 
	 * 核验源
	 */
	@ApiField("source_from")
	private String sourceFrom;

	public void setMismatchReason(String mismatchReason) {
		this.mismatchReason = mismatchReason;
	}
	public String getMismatchReason( ) {
		return this.mismatchReason;
	}

	public void setResultCode(String resultCode) {
		this.resultCode = resultCode;
	}
	public String getResultCode( ) {
		return this.resultCode;
	}

	public void setResultMsg(String resultMsg) {
		this.resultMsg = resultMsg;
	}
	public String getResultMsg( ) {
		return this.resultMsg;
	}

	public void setScore(String score) {
		this.score = score;
	}
	public String getScore( ) {
		return this.score;
	}

	public void setSourceFrom(String sourceFrom) {
		this.sourceFrom = sourceFrom;
	}
	public String getSourceFrom( ) {
		return this.sourceFrom;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy