NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaCreditContractPrincipa...

61 lines
1.9 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>
/// ZhimaCreditContractPrincipalQueryModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaCreditContractPrincipalQueryModel : AopObject
{
/// <summary>
/// 用户加入合约成功后跳转的小程序地址
/// </summary>
[XmlElement("callback_url")]
public string CallbackUrl { get; set; }
/// <summary>
/// 外部类目,样例BOOK图书。目前仅支持图书后续会开放更多类型
/// </summary>
[XmlElement("category")]
public string Category { get; set; }
/// <summary>
/// 扩展字段,目前留空
/// </summary>
[XmlElement("ext")]
public string Ext { get; set; }
/// <summary>
/// 0:二维码扫描模式 1扫码枪模式
/// </summary>
[XmlElement("mode")]
public string Mode { get; set; }
/// <summary>
/// 授权成功后的异步通知页面一般为http的地址在收到通知后商户做自身的业务逻辑处理
/// </summary>
[XmlElement("notify_addr")]
public string NotifyAddr { get; set; }
/// <summary>
/// 外部订单号。需要商户确保唯一性。
/// </summary>
[XmlElement("out_trans_no")]
public string OutTransNo { get; set; }
/// <summary>
/// 以28开头的二维码字符串在mode=1(扫码枪模式)下必须传
/// </summary>
[XmlElement("qr_code")]
public string QrCode { get; set; }
/// <summary>
/// 信用服务id商户入驻芝麻服务后得到的服务id在服务入驻后台可看到。
/// </summary>
[XmlElement("service_id")]
public string ServiceId { get; set; }
}
}