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

com.alipay.api.domain.ZhimaCustomerEpCertificationInitializeModel 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.domain;

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

/**
 * 企业认证初始化
 *
 * @author auto create
 * @since 1.0, 2022-04-15 12:01:21
 */
public class ZhimaCustomerEpCertificationInitializeModel extends AlipayObject {

	private static final long serialVersionUID = 5482535732312629494L;

	/**
	 * 认证场景码,支持:EP_ALIPAY_ACCOUNT。
说明:签约的协议决定了可以使用哪些场景。
	 */
	@ApiField("biz_code")
	private String bizCode;

	/**
	 * 扩展业务参数,暂时没有用到,接口预留
	 */
	@ApiField("ext_biz_param")
	private String extBizParam;

	/**
	 * 身份信息数据,其值为一个json串。无入参时值为"{}"。有入参时必须指定身份类型identity_type,不同的身份类型对应的身份信息不同。
当前支持 identity_type=EP_CERT_INFO,表示身份信息为法人证件三要素与企业证件三要素,入参示例: {"identity_type": "EP_CERT_INFO", "cert_type": "IDENTITY_CARD", "cert_name": "收委", "cert_no":"260104197909275964", "ep_cert_type": "NATIONAL_LEGAL_MERGE", "ep_cert_name": "xxx有限公司", "ep_cert_no":"91330000327827106L"}。
备注:上述json串中的 ep_cert_type 属性仅支持如下2种类型:
NATIONAL_LEGAL:工商注册号。
NATIONAL_LEGAL_MERGE : 社会统一信用代码。
	 */
	@ApiField("identity_param")
	private String identityParam;

	/**
	 * 认证商户自定义配置,支持一些商户可选的功能,目前为预留的属性值
	 */
	@ApiField("merchant_config")
	private String merchantConfig;

	/**
	 * 产品码,固定为 w1010100003000001889。
	 */
	@ApiField("product_code")
	private String productCode;

	/**
	 * 商户请求的唯一标志,有商户自定义,且需保证其唯一性。仅支持 32 位长度的字母数字下划线组合。
建议:前面几位字符是商户自定义的简称,中间可以使用一段日期,结尾可以使用一个序列号。
	 */
	@ApiField("transaction_id")
	private String transactionId;

	public String getBizCode() {
		return this.bizCode;
	}
	public void setBizCode(String bizCode) {
		this.bizCode = bizCode;
	}

	public String getExtBizParam() {
		return this.extBizParam;
	}
	public void setExtBizParam(String extBizParam) {
		this.extBizParam = extBizParam;
	}

	public String getIdentityParam() {
		return this.identityParam;
	}
	public void setIdentityParam(String identityParam) {
		this.identityParam = identityParam;
	}

	public String getMerchantConfig() {
		return this.merchantConfig;
	}
	public void setMerchantConfig(String merchantConfig) {
		this.merchantConfig = merchantConfig;
	}

	public String getProductCode() {
		return this.productCode;
	}
	public void setProductCode(String productCode) {
		this.productCode = productCode;
	}

	public String getTransactionId() {
		return this.transactionId;
	}
	public void setTransactionId(String transactionId) {
		this.transactionId = transactionId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy