NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayAssetCardNewtemplateC...

111 lines
3.2 KiB
C#
Raw 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayAssetCardNewtemplateCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayAssetCardNewtemplateCreateModel : AopObject
{
/// <summary>
/// 账户模式:借记/贷记/借贷合一账户模式
/// </summary>
[XmlElement("account_model")]
public string AccountModel { get; set; }
/// <summary>
/// 按照资金产品维度定义的资产类型
/// </summary>
[XmlElement("assets_code")]
public string AssetsCode { get; set; }
/// <summary>
/// 业务来源
/// </summary>
[XmlElement("biz_from")]
public string BizFrom { get; set; }
/// <summary>
/// 资金信息列表[{"fundType":"HUA_BEI"}]
/// </summary>
[XmlArray("card_fund_infos")]
[XmlArrayItem("card_fund_info")]
public List<CardFundInfo> CardFundInfos { get; set; }
/// <summary>
/// 卡模式:单卡/多卡模式
/// </summary>
[XmlElement("card_model")]
public string CardModel { get; set; }
/// <summary>
/// 卡名称
/// </summary>
[XmlElement("card_name")]
public string CardName { get; set; }
/// <summary>
/// 创建人userId
/// </summary>
[XmlElement("creator")]
public string Creator { get; set; }
/// <summary>
/// 贷记信息{"allowOverPay":false,"creditQuota":"0"}
/// </summary>
[XmlElement("credit_info")]
public CardCreditInfo CreditInfo { get; set; }
/// <summary>
/// 扩展信息
/// </summary>
[XmlElement("extend_info")]
public string ExtendInfo { get; set; }
/// <summary>
/// 操作人userId
/// </summary>
[XmlElement("operator")]
public string Operator { get; set; }
/// <summary>
/// 比如某种业务标准外部订单号,比如交易外部订单号,代表商户端自己订单号
/// </summary>
[XmlElement("out_biz_no")]
public string OutBizNo { get; set; }
/// <summary>
/// 商户和支付宝交互时用于代表支付宝分配给商户ID
/// </summary>
[XmlElement("partner_id")]
public string PartnerId { get; set; }
/// <summary>
/// 卡账户生命周期类型:长期卡/月卡
/// </summary>
[XmlElement("period_type")]
public string PeriodType { get; set; }
/// <summary>
/// 按照业务资产维度定义的产品编码
/// </summary>
[XmlElement("product_code")]
public string ProductCode { get; set; }
/// <summary>
/// 模板结算商户id后续商户资金流入的指定账户
/// </summary>
[XmlElement("settle_user_id")]
public string SettleUserId { get; set; }
/// <summary>
/// 商户资金签约主体
/// </summary>
[XmlElement("sign_principal")]
public string SignPrincipal { get; set; }
}
}