NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCreditEpSceneRatingApp...

31 lines
1.0 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>
/// ZhimaCreditEpSceneRatingApplyModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCreditEpSceneRatingApplyModel : AopObject
{
/// <summary>
/// 发起申请的环境,支持以下值: PCPC端浏览器, ALIPAY_H5支付宝移动端H5, XIAOCHENGXU:支付宝小程序, MINIAPP:小程序JSAPI调用方式 默认ALIPAY_H5
/// </summary>
[XmlElement("apply_environment")]
public string ApplyEnvironment { get; set; }
/// <summary>
/// 芝麻企业信用评估订单号
/// </summary>
[XmlElement("order_no")]
public string OrderNo { get; set; }
/// <summary>
/// 商户请求的唯一标志64位长度的字母数字下划线组合。该标识作为对账的关键信息商户要保证其唯一性。
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
}
}