| 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; |  |         } |  |     } |  | } | 
 |