NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayDataBillBailQueryResp...

21 lines
530 B
C#
Raw 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;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayDataBillBailQueryResponse.
/// </summary>
public class AlipayDataBillBailQueryResponse : AopResponse
{
/// <summary>
/// 保证金明细列表最多返回5000条
/// </summary>
[XmlArray("detail_list")]
[XmlArrayItem("bail_detail_result")]
public List<BailDetailResult> DetailList { get; set; }
}
}