TradeInvoiceAmountGetResponse.cs 672 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.Xml.Serialization;
  3. using System.Collections.Generic;
  4. namespace Top.Api.Response
  5. {
  6. /// <summary>
  7. /// TradeInvoiceAmountGetResponse.
  8. /// </summary>
  9. public class TradeInvoiceAmountGetResponse : TopResponse
  10. {
  11. /// <summary>
  12. /// 应开票给消费者的金额,单位分
  13. /// </summary>
  14. [XmlElement("consumer_invoice_amount")]
  15. public string ConsumerInvoiceAmount { get; set; }
  16. /// <summary>
  17. /// 应开票给平台的金额,单位分
  18. /// </summary>
  19. [XmlElement("platform_invoice_amount")]
  20. public string PlatformInvoiceAmount { get; set; }
  21. }
  22. }