37 lines
1.4 KiB
C#
37 lines
1.4 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// ExtraParams Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class ExtraParams : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 轻会员场景下协议结算周期,由协议生效日期到失效日期拼接(yyyyMMddHHmmss-yyyyMMddHHmmss),精确到秒。
|
||
/// </summary>
|
||
[XmlElement("period")]
|
||
public string Period { get; set; }
|
||
|
||
/// <summary>
|
||
/// 轻会员费用结算原始信息。详细字段说明:total_real_pay_amount轻会员周期内累计支付宝支付金额, total_pay_count轻会员周期内累计支付宝支付次数,total_discount_amount轻会员周期内累计享受的轻会员优惠。(上面金额字段单位为元,精确小数点后两位)
|
||
/// </summary>
|
||
[XmlElement("period_summary_info")]
|
||
public string PeriodSummaryInfo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 用户主动意愿退出:USER_CANCEL_QUIT; 商户结算退出:SETTLE_APPLY_QUIT; 默认值为SETTLE_APPLY_QUIT;这个字段会影响用户在芝麻信用合约的状态
|
||
/// </summary>
|
||
[XmlElement("quit_type")]
|
||
public string QuitType { get; set; }
|
||
|
||
/// <summary>
|
||
/// 代扣期数,周期扣场景PERIOD_SETTLE下需要传递
|
||
/// </summary>
|
||
[XmlElement("withhold_index")]
|
||
public string WithholdIndex { get; set; }
|
||
}
|
||
}
|