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

com.alipay.api.domain.CommonMerchantLicenseInfo Maven / Gradle / Ivy

package com.alipay.api.domain;

import java.util.List;

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

/**
 * 用户资质信息
 *
 * @author auto create
 * @since 1.0, 2024-12-06 16:56:56
 */
public class CommonMerchantLicenseInfo extends AlipayObject {

	private static final long serialVersionUID = 4138731626411522394L;

	/**
	 * 证件号,比如统一社会信用代码、登记管理部门代码、机构类型代码、行政区划码、主体识别码和校验码等
	 */
	@ApiField("cert_no")
	private String certNo;

	/**
	 * 资质有效期 {dateFormat{yyyy-MM-dd}} 长期有效传入 9999-12-31
	 */
	@ApiField("effective_date")
	private String effectiveDate;

	/**
	 * 资质名称。如营业执照就是营业执照的名称
	 */
	@ApiField("license_name")
	private String licenseName;

	/**
	 * 资质凭证图片链接,通过调用 ant.merchant.expand.indirect.image.upload(图片上传)接口返回的image_id作为参数
	 */
	@ApiListField("license_urls")
	@ApiField("string")
	private List licenseUrls;

	/**
	 * 资质类型
	 */
	@ApiField("type")
	private String type;

	public String getCertNo() {
		return this.certNo;
	}
	public void setCertNo(String certNo) {
		this.certNo = certNo;
	}

	public String getEffectiveDate() {
		return this.effectiveDate;
	}
	public void setEffectiveDate(String effectiveDate) {
		this.effectiveDate = effectiveDate;
	}

	public String getLicenseName() {
		return this.licenseName;
	}
	public void setLicenseName(String licenseName) {
		this.licenseName = licenseName;
	}

	public List getLicenseUrls() {
		return this.licenseUrls;
	}
	public void setLicenseUrls(List licenseUrls) {
		this.licenseUrls = licenseUrls;
	}

	public String getType() {
		return this.type;
	}
	public void setType(String type) {
		this.type = type;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy