zhengyuxuan
2025-04-02 e7d1ef3eef4dcbec4f7fae27542e94cc0bbf89c8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
using Newtonsoft.Json;
using System.Runtime.Serialization;
using Tea;
 
namespace LifePayment.Domain
{
    public class FundAccountBookQueryResponse : AlipayBaseOutput
    {
        /// <summary>
        /// 可用余额
        /// </summary>
        [NameInMap("available_amount")]
        public string AvaliableAmount
        {
            get;
            set;
        }
 
        /// <summary>
        /// 场景余额模式外标卡信息
        /// </summary>
        [NameInMap("ext_card_info")]
        public ExtCardInfo ExtCardInfo
        {
            get;
            set;
        }
 
        /// <summary>
        /// 资金记账本关联的授权信息
        /// </summary>
        [NameInMap("auth_info")]
        public AuthInfoDTO AuthInfo
        {
            get;
            set;
        }
 
        /// <summary>
        /// 记账账簿id
        /// </summary>
        [NameInMap("account_book_id")]
        public string AccountBookId
        {
            get;
            set;
        }
    }
 
    public class ExtCardInfo: TeaModel
    {
        /// <summary>
        /// 托管子户的外卡卡号
        /// </summary>
        [NameInMap("card_no")]
        public string CardNo
        {
            get;
            set;
        }
 
        /// <summary>
        /// 记账的外卡状态, A:正常状态; 其他:异常
        /// </summary>
        [NameInMap("status")]
        public string Status
        {
            get;
            set;
        }
 
        /// <summary>
        /// 记账的外卡户名
        /// </summary>
        [NameInMap("bank_acc_name")]
        public string BankAccName
        {
            get;
            set;
        }
 
        /// <summary>
        /// 托管子户外卡支行
        /// </summary>
        [NameInMap("card_branch")]
        public string CardBranch
        {
            get;
            set;
        }
 
        /// <summary>
        /// 托管子户外卡开户行
        /// </summary>
        [NameInMap("card_bank")]
        public string CardBank
        {
            get;
            set;
        }
 
        /// <summary>
        /// 托管子户外卡开户地址
        /// </summary>
        [NameInMap("card_location")]
        public string CardLocation
        {
            get;
            set;
        }
 
        /// <summary>
        /// 托管子户外卡联行号
        /// </summary>
        [NameInMap("card_deposit")]
        public string CardDeposit
        {
            get;
            set;
        }
    }
 
    public class AuthInfoDTO: TeaModel
    {
        /// <summary>
        /// 授权协议号
        /// </summary>
        /// <value>授权协议号</value>
        [NameInMap("agreement_no")]
        public string AgreementNo { get; set; }
 
        /// <summary>
        /// 授权的支付宝账号,脱敏。
        /// </summary>
        /// <value>授权的支付宝账号,脱敏。</value>
        [NameInMap("alipay_logon_id")]
        public string AlipayLogonId { get; set; }
    }
}