NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFundAccountbookQueryM...

37 lines
1013 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>
/// AlipayFundAccountbookQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFundAccountbookQueryModel : AopObject
{
/// <summary>
/// 记账账簿id
/// </summary>
[XmlElement("account_book_id")]
public string AccountBookId { get; set; }
/// <summary>
/// JSON格式传递业务扩展参数
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 商户会员的唯一标识如果传入account_book_id此字段必传并比对一致性。
/// </summary>
[XmlElement("merchant_user_id")]
public string MerchantUserId { get; set; }
/// <summary>
/// 资金记账本的开通场景码
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
}
}