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

com.alipay.api.response.AlipayOpenAppDeliveryTemplateQueryResponse Maven / Gradle / Ivy

package com.alipay.api.response;

import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.AttributeVO;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.open.app.delivery.template.query response.
 * 
 * @author auto create
 * @since 1.0, 2023-07-04 10:06:52
 */
public class AlipayOpenAppDeliveryTemplateQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 7692294933348129616L;

	/** 
	 * 属性信息
	 */
	@ApiField("attrs")
	private AttributeVO attrs;

	/** 
	 * 履约类型
	 */
	@ApiField("delivery_type")
	private String deliveryType;

	/** 
	 * 履约模板ID
	 */
	@ApiField("template_id")
	private String templateId;

	public void setAttrs(AttributeVO attrs) {
		this.attrs = attrs;
	}
	public AttributeVO getAttrs( ) {
		return this.attrs;
	}

	public void setDeliveryType(String deliveryType) {
		this.deliveryType = deliveryType;
	}
	public String getDeliveryType( ) {
		return this.deliveryType;
	}

	public void setTemplateId(String templateId) {
		this.templateId = templateId;
	}
	public String getTemplateId( ) {
		return this.templateId;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy