using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZhimaCreditOrderRepaymentApplyModel Data Structure. /// [Serializable] public class ZhimaCreditOrderRepaymentApplyModel : AopObject { /// /// 追赔操作类型,目前支持: CREATE -- 创建 COMPLETE -- 完结 CANCEL -- 取消 /// [XmlElement("action_type")] public string ActionType { get; set; } /// /// 业务类目,由芝麻分类,商户根据自己业务选择使用; action_type 为 CREATE 时该值不可为空; /// [XmlElement("category")] public string Category { get; set; } /// /// Json 字符串,订单对应业务信息同步,会影响订单C端展现; 如有特殊诉求,接入前找业务对口人对接 /// [XmlElement("order_info")] public string OrderInfo { get; set; } /// /// 用作业务幂等号,唯一标识一笔商户单据 /// [XmlElement("out_order_no")] public string OutOrderNo { get; set; } /// /// 追赔金额; 精度支持小数点后2位(金额:分) 当action_type 为 CREATE时,必填; /// [XmlElement("repay_amount")] public string RepayAmount { get; set; } /// /// 追赔相关证明信息 /// [XmlElement("repay_proof")] public string RepayProof { get; set; } /// /// 蚂蚁统一会员ID,确保传入与业务订单相匹配的会员ID /// [XmlElement("user_id")] public string UserId { get; set; } } }