NewGaoKaoApi/PaymentSDK/AliPay/Domain/BeikeAccountResponse.cs

31 lines
765 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>
/// BeikeAccountResponse Data Structure.
/// </summary>
[Serializable]
public class BeikeAccountResponse : AopObject
{
/// <summary>
/// 当前操作变化值
/// </summary>
[XmlElement("change_amount")]
public long ChangeAmount { get; set; }
/// <summary>
/// 呗壳当前用户所有的免息额度值long类型
/// </summary>
[XmlElement("current_amount")]
public long CurrentAmount { get; set; }
/// <summary>
/// 外部唯一单号
/// </summary>
[XmlElement("outer_biz_no")]
public string OuterBizNo { get; set; }
}
}