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

com.alipay.api.domain.TemplateComponentListResponse 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, 2023-05-08 14:53:46
 */
public class TemplateComponentListResponse extends AlipayObject {

	private static final long serialVersionUID = 8276797672212997813L;

	/**
	 * 模板组件对象列表
	 */
	@ApiListField("component")
	@ApiField("component_d_t_o")
	private List component;

	/**
	 * 模板编码
	 */
	@ApiField("template_code")
	private String templateCode;

	public List getComponent() {
		return this.component;
	}
	public void setComponent(List component) {
		this.component = component;
	}

	public String getTemplateCode() {
		return this.templateCode;
	}
	public void setTemplateCode(String templateCode) {
		this.templateCode = templateCode;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy