NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCreditPeUserOrderConsu...

67 lines
2.1 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>
/// ZhimaCreditPeUserOrderConsultModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCreditPeUserOrderConsultModel : AopObject
{
/// <summary>
/// 申请免押金额,取值范围[0.01,100000000]精确到小数点后2位
/// </summary>
[XmlElement("apply_amount")]
public string ApplyAmount { get; set; }
/// <summary>
/// 买家的蚂蚁统一会员ID
/// </summary>
[XmlElement("buyer_id")]
public string BuyerId { get; set; }
/// <summary>
/// 芝麻信用类目码,由芝麻信用侧分配
/// </summary>
[XmlElement("category_code")]
public string CategoryCode { get; set; }
/// <summary>
/// 芝麻信用场景,由芝麻信用侧分配,如:天猫信用购,淘宝租赁等
/// </summary>
[XmlElement("credit_scene")]
public string CreditScene { get; set; }
/// <summary>
/// 业务扩展参数json格式字符串如果有需要请提前联系开发人员沟通确定参数
/// </summary>
[XmlElement("ext_params")]
public string ExtParams { get; set; }
/// <summary>
/// 接入商家的订单号
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 签约产品码
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 风险环境参数信息json格式字符串目前已知key如下umid设备指纹imei设备号lbs经纬度ip设备网络IP地址wireless_mac设备无线wifi macmac设备网卡地址
/// </summary>
[XmlElement("risk_info")]
public string RiskInfo { get; set; }
/// <summary>
/// 卖家商家支付宝id
/// </summary>
[XmlElement("seller_id")]
public string SellerId { get; set; }
}
}