NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPcreditLoanBeikeaccou...

43 lines
1.3 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>
/// AlipayPcreditLoanBeikeaccountInterestfreeModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPcreditLoanBeikeaccountInterestfreeModifyModel : AopObject
{
/// <summary>
/// 扣减和发放的时候需要用到的金额,无小数,必须为正整数
/// </summary>
[XmlElement("operation_amount")]
public long OperationAmount { get; set; }
/// <summary>
/// 操作类型(额度查询,额度扣减,额度发放)
/// </summary>
[XmlElement("operation_type")]
public long OperationType { get; set; }
/// <summary>
/// 扣减和发放的业务id用于幂等防重
/// </summary>
[XmlElement("outer_biz_no")]
public string OuterBizNo { get; set; }
/// <summary>
/// 操作场景XXX小游戏具体传入值询问接口开发人员
/// </summary>
[XmlElement("scenes")]
public string Scenes { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}