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

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

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.40.21.ALL
Show newest version
package com.alipay.api.response;

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

import com.alipay.api.AlipayResponse;

/**
 * ALIPAY API: alipay.ebpp.invoice.order.query response.
 * 
 * @author auto create
 * @since 1.0, 2023-09-11 16:51:42
 */
public class AlipayEbppInvoiceOrderQueryResponse extends AlipayResponse {

	private static final long serialVersionUID = 3837727583371272211L;

	/** 
	 * 根据订单号发票查询要素信息
	 */
	@ApiField("invoice_element_model")
	private InvoiceElementModel invoiceElementModel;

	/** 
	 * 开票申请时传入订单号(支持主单号、子单号),不限是否为支付宝体内交易单号
	 */
	@ApiField("order_no")
	private String orderNo;

	public void setInvoiceElementModel(InvoiceElementModel invoiceElementModel) {
		this.invoiceElementModel = invoiceElementModel;
	}
	public InvoiceElementModel getInvoiceElementModel( ) {
		return this.invoiceElementModel;
	}

	public void setOrderNo(String orderNo) {
		this.orderNo = orderNo;
	}
	public String getOrderNo( ) {
		return this.orderNo;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy