using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// MerchantInvoiceInfoKt Data Structure.
///
[Serializable]
public class MerchantInvoiceInfoKt : AopObject
{
///
/// 是否接受电子发票 true/false
///
[XmlElement("accept_electronic")]
public bool AcceptElectronic { get; set; }
///
/// 开票地址
///
[XmlElement("address")]
public string Address { get; set; }
///
/// 是否自动开票,值为true/false
///
[XmlElement("auto_invoice")]
public bool AutoInvoice { get; set; }
///
/// 银行账号
///
[XmlElement("bank_account")]
public string BankAccount { get; set; }
///
/// 开户行名称
///
[XmlElement("bank_name")]
public string BankName { get; set; }
///
/// 收件人地址
///
[XmlElement("mail_address")]
public AddressInfoKt MailAddress { get; set; }
///
/// 收件人名称
///
[XmlElement("mail_name")]
public string MailName { get; set; }
///
/// 寄送电话
///
[XmlElement("mail_telephone")]
public string MailTelephone { get; set; }
///
/// 纳税人识别号
///
[XmlElement("tax_no")]
public string TaxNo { get; set; }
///
/// 纳税人资格种类:01一般纳税人,02小规模纳税人。一般纳税人开的是专票
///
[XmlElement("tax_payer_qualification")]
public string TaxPayerQualification { get; set; }
///
/// 纳税人资格开始时间,yyyyMMdd格式
///
[XmlElement("tax_payer_valid")]
public string TaxPayerValid { get; set; }
///
/// 开票电话
///
[XmlElement("telephone")]
public string Telephone { get; set; }
///
/// 发票抬头
///
[XmlElement("title")]
public string Title { get; set; }
}
}