NewGaoKaoApi/PaymentSDK/AliPay/Domain/AssetParams.cs

31 lines
789 B
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>
/// AssetParams Data Structure.
/// </summary>
[Serializable]
public class AssetParams : AopObject
{
/// <summary>
/// 资产类型: 1. BANK银行卡 2. ACCOUNT账号模式
/// </summary>
[XmlElement("asset_type")]
public string AssetType { get; set; }
/// <summary>
/// 银行卡号。 assetType为BANK时必填。
/// </summary>
[XmlElement("card_no")]
public string CardNo { get; set; }
/// <summary>
/// 机构ID。 assetType为BANK时必填。
/// </summary>
[XmlElement("inst_id")]
public string InstId { get; set; }
}
}