NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntfortuneEquityInstpointTr...

51 lines
1.6 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>
/// AntfortuneEquityInstpointTransQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntfortuneEquityInstpointTransQueryModel : AopObject
{
/// <summary>
/// 查询流水的结束时间。与start_time的时间跨度不超过6个月
/// </summary>
[XmlElement("end_time")]
public string EndTime { get; set; }
/// <summary>
/// 分页的当前页数。取值范围[1-999]
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 分页每页大小。取值范围[1,20]
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 查询流水的开始时间。与end_time的时间跨度不超过6个月
/// </summary>
[XmlElement("start_time")]
public string StartTime { get; set; }
/// <summary>
/// 查询的积分流水类型。多个英文逗号分隔。不传或传空时默认为全部流水。全部流水类型包括SEND_POINT积分发放流水TRADE_SUBTRACT兑换使用积分流水DIRECT_SUBTRACT直接扣减流水。
/// </summary>
[XmlArray("trans_type")]
[XmlArrayItem("string")]
public List<string> TransType { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}