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

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

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

import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: zhima.credit.antifraud.verify response.
 * 
 * @author auto create
 * @since 1.0, 2017-07-14 17:17:49
 */
public class ZhimaCreditAntifraudVerifyResponse extends AlipayResponse {

	private static final long serialVersionUID = 5591759169475985338L;

	/** 
	 * 芝麻信用对于每一次请求返回的业务号。后续可以通过此业务号进行对账
	 */
	@ApiField("biz_no")
	private String bizNo;

	/** 
	 * 验证code列表
	 */
	@ApiListField("verify_code")
	@ApiField("string")
	private List verifyCode;

	public void setBizNo(String bizNo) {
		this.bizNo = bizNo;
	}
	public String getBizNo( ) {
		return this.bizNo;
	}

	public void setVerifyCode(List verifyCode) {
		this.verifyCode = verifyCode;
	}
	public List getVerifyCode( ) {
		return this.verifyCode;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy