NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFundAccountQueryModel.cs

49 lines
1.5 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>
/// AlipayFundAccountQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundAccountQueryModel : AopObject
{
/// <summary>
/// 开户产品码。如果查询托管子户余额,必传且必须传入与开户时传入的值一致。
/// </summary>
[XmlElement("account_product_code")]
public string AccountProductCode { get; set; }
/// <summary>
/// 开户场景码,与开户产品码不可同时传递。
/// </summary>
[XmlElement("account_scene_code")]
public string AccountSceneCode { get; set; }
/// <summary>
/// 查询的账号类型查询余额账户值为ACCTRANS_ACCOUNT。必填。
/// </summary>
[XmlElement("account_type")]
public string AccountType { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("alipay_user_id")]
public string AlipayUserId { get; set; }
/// <summary>
/// JSON格式传递业务扩展参数。
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 商户会员的唯一标识。如果传入的user_id为虚拟账户userId此字段必传并比对一致性。
/// </summary>
[XmlElement("merchant_user_id")]
public string MerchantUserId { get; set; }
}
}