using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// ApInvoiceBillAmtOpenApiResponse Data Structure.
///
[Serializable]
public class ApInvoiceBillAmtOpenApiResponse : AopObject
{
///
/// 发票关联账单金额
///
[XmlArray("ap_bill_amt_list")]
[XmlArrayItem("ap_bill_amt_open_api_response")]
public List ApBillAmtList { get; set; }
///
/// 发票id
///
[XmlElement("invoice_id")]
public string InvoiceId { get; set; }
}
}