lingling
2025-03-18 55f239f882d883f6f2a52dc9fbe690b11f65b30c
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;
        }
    }
}