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