NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayPcreditHuabeiSpayAuth...

97 lines
3.2 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>
/// AlipayPcreditHuabeiSpayAuthConsultModel Data Structure.
/// </summary>
[Serializable]
public class AlipayPcreditHuabeiSpayAuthConsultModel : AopObject
{
/// <summary>
/// 月月付的资产编码类型月月付接口此处必须传ALICREDITFF
/// </summary>
[XmlElement("asset_type_code")]
public string AssetTypeCode { get; set; }
/// <summary>
/// 月月付业务类型目前只有一个有效值MONTH
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 业务场景: hbff.stanard.other 淘外标准版 hbff.stanard.telecom 淘外运营商合约购
/// </summary>
[XmlElement("business_code")]
public string BusinessCode { get; set; }
/// <summary>
/// 鉴权请求扩展信息;
/// </summary>
[XmlElement("ext_infos")]
public ExtInfos ExtInfos { get; set; }
/// <summary>
/// 费用的承担比例,目前没有启用。
/// </summary>
[XmlElement("fee_rate_percent")]
public string FeeRatePercent { get; set; }
/// <summary>
/// 费用的收费主体;目前没有启用。
/// </summary>
[XmlElement("fee_taker_role")]
public string FeeTakerRole { get; set; }
/// <summary>
/// 商户和蚂蚁的对接模式直连模式用DIRECT_LINK
/// </summary>
[XmlElement("link_mode")]
public string LinkMode { get; set; }
/// <summary>
/// 商户的身份信息
/// </summary>
[XmlElement("merchant")]
public MerchantIDInfo Merchant { get; set; }
/// <summary>
/// PAY_MONTHLY表达按月均匀支付
/// </summary>
[XmlElement("payment_mode")]
public string PaymentMode { get; set; }
/// <summary>
/// RECEIVE_IN_ONE_TIME:表达一次性提前收款服务 RECEIVE_BY_PERIOD:按照周期收款
/// </summary>
[XmlElement("receive_mode")]
public string ReceiveMode { get; set; }
/// <summary>
/// 分次支付的次数必须为整数目前支支持传入10
/// </summary>
[XmlElement("total_install_num")]
public long TotalInstallNum { get; set; }
/// <summary>
/// 支付总金额不是单期支付金额单位为元最多支持小数点后面2位小数
/// </summary>
[XmlElement("total_payment_amount")]
public string TotalPaymentAmount { get; set; }
/// <summary>
/// 用户身份信息蚂蚁统一会员ID user_id、蚂蚁会员登陆ID login_id邮箱、手机号二选一
/// </summary>
[XmlElement("user")]
public UserDInfo User { get; set; }
/// <summary>
/// 买家的蚂蚁统一会员ID建议使用新的 user字段当前字段仍然保持兼容支持
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}