NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserInviteOfflinedeta...

49 lines
1.4 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>
/// AlipayUserInviteOfflinedetailQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayUserInviteOfflinedetailQueryModel : AopObject
{
/// <summary>
/// 页号
/// </summary>
[XmlElement("page")]
public long Page { get; set; }
/// <summary>
/// 页大小page_size上限500当大于500时最多返回500条记录
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 二级渠道
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 一级渠道
/// </summary>
[XmlElement("pid")]
public string Pid { get; set; }
/// <summary>
/// 日期
/// </summary>
[XmlElement("report_date")]
public string ReportDate { get; set; }
/// <summary>
/// 参数名task_id提供给商户按不同的线下拉新任务类型查询任务完成报表当前枚举值有xianxia001,xianxia002,xianxia_super,xianxia_bank。获取方式该API仅提供给KA商户使用接入时由运营沟通该参数如何使用。
/// </summary>
[XmlElement("task_id")]
public string TaskId { get; set; }
}
}