NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoRenthouseBillOrder...

33 lines
1.0 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayEcoRenthouseBillOrderSyncModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoRenthouseBillOrderSyncModel : AopObject
{
/// <summary>
/// 账单条数1-50范围内账单条数和账单明细数量必须一致
/// </summary>
[XmlElement("bill_number")]
public string BillNumber { get; set; }
/// <summary>
/// 账单条数1-50范围内
/// </summary>
[XmlArray("bills")]
[XmlArrayItem("alipay_eco_renthouse_bill")]
public List<AlipayEcoRenthouseBill> Bills { get; set; }
/// <summary>
/// ka请求的唯一标志长度64位以内字符串仅限字母数字下划线组合。该标识作为业务调用的唯一标识ka要保证其业务唯一性
/// </summary>
[XmlElement("trade_id")]
public string TradeId { get; set; }
}
}