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

com.alipay.api.domain.LinkFundResponse 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, 2022-02-25 22:03:44
 */
public class LinkFundResponse extends AlipayObject {

	private static final long serialVersionUID = 8732132789775325548L;

	/**
	 * 基金类型
	 */
	@ApiField("fund_type")
	private String fundType;

	/**
	 * 关联的基金列表
	 */
	@ApiListField("link_funds")
	@ApiField("link_fund_result")
	private List linkFunds;

	public String getFundType() {
		return this.fundType;
	}
	public void setFundType(String fundType) {
		this.fundType = fundType;
	}

	public List getLinkFunds() {
		return this.linkFunds;
	}
	public void setLinkFunds(List linkFunds) {
		this.linkFunds = linkFunds;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy