NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCreditAutofinanceLoan...

67 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>
/// AlipayCreditAutofinanceLoanApplyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCreditAutofinanceLoanApplyModel : AopObject
{
/// <summary>
/// 区域
/// </summary>
[XmlElement("area")]
public string Area { get; set; }
/// <summary>
/// 征信结果回调地址
/// </summary>
[XmlElement("backurl")]
public string Backurl { get; set; }
/// <summary>
/// 扩展参数信息json格式针对不同的业务平台有不同的参数目前大搜车业务支持的参数有firstpayamt 首付租金firstpayprop 首付比例lastpayamt 回购尾款loantenor 贷款期数monthpayamt 每月还款额度
/// </summary>
[XmlElement("extparam")]
public string Extparam { get; set; }
/// <summary>
/// 外部平台宝贝ID
/// </summary>
[XmlElement("itemid")]
public string Itemid { get; set; }
/// <summary>
/// 机构编码
/// </summary>
[XmlElement("orgcode")]
public string Orgcode { get; set; }
/// <summary>
/// 外部平台订单号,64个字符以内、只能包含字母、数字、下划线需保证在外部平台端不重复
/// </summary>
[XmlElement("outorderno")]
public string Outorderno { get; set; }
/// <summary>
/// 支付宝账号数字ID
/// </summary>
[XmlElement("uid")]
public string Uid { get; set; }
/// <summary>
/// 核身VID
/// </summary>
[XmlElement("verifyid")]
public string Verifyid { get; set; }
/// <summary>
/// 当前安装的支付宝钱包版本号
/// </summary>
[XmlElement("version")]
public string Version { get; set; }
}
}