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

com.alipay.api.response.ZhimaCustomerJobworthAuthenticationPreconsultResponse 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: zhima.customer.jobworth.authentication.preconsult response.
 * 
 * @author auto create
 * @since 1.0, 2024-10-16 09:47:13
 */
public class ZhimaCustomerJobworthAuthenticationPreconsultResponse extends AlipayResponse {

	private static final long serialVersionUID = 2346882457762933292L;

	/** 
	 * 预校验是否通过
	 */
	@ApiField("pre_check_success")
	private Boolean preCheckSuccess;

	/** 
	 * pre_check_success字段为false时,商户可以通过该字段获取校验不通过的具体原因
	 */
	@ApiField("reason")
	private String reason;

	public void setPreCheckSuccess(Boolean preCheckSuccess) {
		this.preCheckSuccess = preCheckSuccess;
	}
	public Boolean getPreCheckSuccess( ) {
		return this.preCheckSuccess;
	}

	public void setReason(String reason) {
		this.reason = reason;
	}
	public String getReason( ) {
		return this.reason;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy