using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayMerchantWeikeInvoiceNotifyModel Data Structure.
///
[Serializable]
public class AlipayMerchantWeikeInvoiceNotifyModel : AopObject
{
///
/// 申请ID
///
[XmlElement("apply_id")]
public string ApplyId { get; set; }
///
/// 开票拒绝反馈错误码
///
[XmlElement("feedback_code")]
public string FeedbackCode { get; set; }
///
/// 开票拒绝反馈原因
///
[XmlElement("feedback_msg")]
public string FeedbackMsg { get; set; }
///
/// 反馈状态:true开票成功;false开票拒绝
///
[XmlElement("feedback_result")]
public bool FeedbackResult { get; set; }
///
/// 发票种类,0=电子发票,1=纸质发票,2=专票
///
[XmlElement("invoice_kind")]
public long InvoiceKind { get; set; }
///
/// isv的物流信息
///
[XmlArray("logistics_info")]
[XmlArrayItem("isv_logistics_info")]
public List LogisticsInfo { get; set; }
}
}