You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
682 B
C#

9 months ago
using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Aop.Api.Domain;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayEcapiprodDrawndnFeerecordQueryResponse.
/// </summary>
public class AlipayEcapiprodDrawndnFeerecordQueryResponse : AopResponse
{
/// <summary>
/// 费用交易流水
/// </summary>
[XmlArray("fee_records")]
[XmlArrayItem("fee_records")]
public List<FeeRecords> FeeRecords { get; set; }
/// <summary>
/// 唯一标识这次请求
/// </summary>
[XmlElement("request_id")]
public string RequestId { get; set; }
}
}