/* * Copyright (c) 2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. */ namespace TencentCloud.Cpdp.V20190820.Models { using Newtonsoft.Json; using System.Collections.Generic; using TencentCloud.Common; public class TransferItem : AbstractModel { /// /// STRING(10),入账类型(02: 会员充值; 03: 资金挂账) /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("InAcctType")] public string InAcctType{ get; set; } /// /// STRING(32),交易网会员代码 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("TranNetMemberCode")] public string TranNetMemberCode{ get; set; } /// /// STRING(50),见证子帐户的帐号 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("SubAcctNo")] public string SubAcctNo{ get; set; } /// /// STRING(20),入金金额 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("TranAmt")] public string TranAmt{ get; set; } /// /// STRING(50),入金账号 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("InAcctNo")] public string InAcctNo{ get; set; } /// /// STRING(150),入金账户名称 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("InAcctName")] public string InAcctName{ get; set; } /// /// STRING(3),币种 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Ccy")] public string Ccy{ get; set; } /// /// STRING(8),会计日期(即银行主机记账日期) /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("AccountingDate")] public string AccountingDate{ get; set; } /// /// STRING(150),银行名称(付款账户银行名称) /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("BankName")] public string BankName{ get; set; } /// /// STRING(300),转账备注 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Remark")] public string Remark{ get; set; } /// /// STRING(52),见证系统流水号 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("FrontSeqNo")] public string FrontSeqNo{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "InAcctType", this.InAcctType); this.SetParamSimple(map, prefix + "TranNetMemberCode", this.TranNetMemberCode); this.SetParamSimple(map, prefix + "SubAcctNo", this.SubAcctNo); this.SetParamSimple(map, prefix + "TranAmt", this.TranAmt); this.SetParamSimple(map, prefix + "InAcctNo", this.InAcctNo); this.SetParamSimple(map, prefix + "InAcctName", this.InAcctName); this.SetParamSimple(map, prefix + "Ccy", this.Ccy); this.SetParamSimple(map, prefix + "AccountingDate", this.AccountingDate); this.SetParamSimple(map, prefix + "BankName", this.BankName); this.SetParamSimple(map, prefix + "Remark", this.Remark); this.SetParamSimple(map, prefix + "FrontSeqNo", this.FrontSeqNo); } } }