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

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

package com.alipay.api.response;

import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.WaybillInvoiceQueryIstd;

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.commerce.logistics.invoice.istdwaybill.query response.
 * 
 * @author auto create
 * @since 1.0, 2024-07-04 16:55:13
 */
public class AlipayCommerceLogisticsInvoiceIstdwaybillQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 4468185989666868766L;

	/** 
	 * 整体的运单开票状态,0:处理中 1:开票成功 2:开票失败
	 */
	@ApiField("status")
	private Long status;

	/** 
	 * 即时配送运单列表
	 */
	@ApiListField("waybill_invoices")
	@ApiField("waybill_invoice_query_istd")
	private List waybillInvoices;

	public void setStatus(Long status) {
		this.status = status;
	}
	public Long getStatus( ) {
		return this.status;
	}

	public void setWaybillInvoices(List waybillInvoices) {
		this.waybillInvoices = waybillInvoices;
	}
	public List getWaybillInvoices( ) {
		return this.waybillInvoices;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy