zhengyuxuan
2025-03-24 e896cbc0f5d5483d4661918556f45b7b9a6c31c2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using Newtonsoft.Json;
using System.ComponentModel.DataAnnotations;
using Tea;
 
namespace LifePayment.Domain
{
    public class FundAccountQueryResponse : AlipayBaseOutput
    {
        /// <summary>
        /// 可用余额。可用于支付或提现的余额。
        /// </summary>
        [NameInMap("available_amount")]
        public string AvailableAmount
        {
            set;
            get;
        }
    }
}