Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/MybankFinanceYulibaoAccountQueryResponse.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

41 lines
1.1 KiB
C#

using Newtonsoft.Json;
using Alipay.AopSdk.Core.Domain;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// MybankFinanceYulibaoAccountQueryResponse.
/// </summary>
public class MybankFinanceYulibaoAccountQueryResponse : AopResponse
{
/// <summary>
/// 可用份额,单位为元
/// </summary>
[JsonProperty("available_amount")]
public string AvailableAmount { get; set; }
/// <summary>
/// 业务冻结份额,单位为元
/// </summary>
[JsonProperty("freeze_amount")]
public string FreezeAmount { get; set; }
/// <summary>
/// 系统冻结份额,单位为元(建议不展示给用户)
/// </summary>
[JsonProperty("sys_freeze_amount")]
public string SysFreezeAmount { get; set; }
/// <summary>
/// 余利宝总余额,单位为元
/// </summary>
[JsonProperty("total_amount")]
public string TotalAmount { get; set; }
/// <summary>
/// 余利宝收益详情
/// </summary>
[JsonProperty("ylb_profit_detail_info")]
public YLBProfitDetailInfo YlbProfitDetailInfo { get; set; }
}
}