NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFundTransDishonorQuer...

31 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayFundTransDishonorQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundTransDishonorQueryModel : AopObject
{
/// <summary>
/// 查询退票起始时间:大于等于格式为yyyyMMdd。 用于查询退票起始日期00:00:00后发生的退票。 与refund_end差距不得大于15天。
/// </summary>
[XmlElement("dishonor_begin")]
public string DishonorBegin { get; set; }
/// <summary>
/// 查询退票截止时间小于格式为yyyyMMdd。 用于查询退票截止日期24:00:00前发生的退票。 与refund_begin差距不得大于15天。
/// </summary>
[XmlElement("dishonor_end")]
public string DishonorEnd { get; set; }
/// <summary>
/// 查询页号。 必须是正整数。 默认值为1。
/// </summary>
[XmlElement("page")]
public string Page { get; set; }
}
}