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

com.alipay.api.domain.IndirectFinancialOrgInfo 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-07-10 16:57:17
 */
public class IndirectFinancialOrgInfo extends AlipayObject {

	private static final long serialVersionUID = 5254995545324164829L;

	/**
	 * 金融机构许可证图片,最多五张(使用图片上传接口)
	 */
	@ApiListField("financial_org_cert_img")
	@ApiField("string")
	private List financialOrgCertImg;

	/**
	 * 银行业(BANK)、支付机构(PAYMENT)、保险业(INSURANCE)、交易及结算类金融机构(SETTLE)、OTHER(OTHER)
	 */
	@ApiField("financial_org_type")
	private String financialOrgType;

	public List getFinancialOrgCertImg() {
		return this.financialOrgCertImg;
	}
	public void setFinancialOrgCertImg(List financialOrgCertImg) {
		this.financialOrgCertImg = financialOrgCertImg;
	}

	public String getFinancialOrgType() {
		return this.financialOrgType;
	}
	public void setFinancialOrgType(String financialOrgType) {
		this.financialOrgType = financialOrgType;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy