NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCreditOrderRepaymentAp...

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