NewGaoKaoApi/PaymentSDK/AliPay/Response/AlipayMerchantOrderDigestCo...

33 lines
1000 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>
/// AlipayMerchantOrderDigestConsumerBatchqueryResponse.
/// </summary>
public class AlipayMerchantOrderDigestConsumerBatchqueryResponse : AopResponse
{
/// <summary>
/// 是否还有下一页
/// </summary>
[XmlElement("has_next_page")]
public bool HasNextPage { get; set; }
/// <summary>
/// 下一次请求的end_time用于分页查询
/// </summary>
[XmlElement("next_end_time")]
public string NextEndTime { get; set; }
/// <summary>
/// 订单信息列表,当存在符合条件的订单时,则返回订单信息;
/// </summary>
[XmlArray("order_list")]
[XmlArrayItem("alipay_order_data_openapi_result_info")]
public List<AlipayOrderDataOpenapiResultInfo> OrderList { get; set; }
}
}