/* * 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 WithdrawItem : AbstractModel { /// /// STRING(2),记账标志(01: 提现; 02: 清分 ) /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("BookingFlag")] public string BookingFlag{ get; set; } /// /// STRING(32),交易状态(0: 成功) /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("TranStatus")] public string TranStatus{ get; set; } /// /// STRING(200),记账说明 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("BookingMsg")] public string BookingMsg{ get; set; } /// /// STRING(32),交易网会员代码 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("TranNetMemberCode")] public string TranNetMemberCode{ get; set; } /// /// STRING(50),见证子帐户的帐号 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("SubAcctNo")] public string SubAcctNo{ get; set; } /// /// STRING(150),见证子账户的名称 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("SubAcctName")] public string SubAcctName{ get; set; } /// /// STRING(20),交易金额 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("TranAmt")] public string TranAmt{ get; set; } /// /// STRING(20),手续费 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Commission")] public string Commission{ get; set; } /// /// STRING(8),交易日期 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("TranDate")] public string TranDate{ get; set; } /// /// STRING(20),交易时间 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("TranTime")] public string TranTime{ get; set; } /// /// STRING(52),见证系统流水号 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("FrontSeqNo")] public string FrontSeqNo{ get; set; } /// /// STRING(300),备注 /// 注意:此字段可能返回 null,表示取不到有效值。 /// [JsonProperty("Remark")] public string Remark{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "BookingFlag", this.BookingFlag); this.SetParamSimple(map, prefix + "TranStatus", this.TranStatus); this.SetParamSimple(map, prefix + "BookingMsg", this.BookingMsg); this.SetParamSimple(map, prefix + "TranNetMemberCode", this.TranNetMemberCode); this.SetParamSimple(map, prefix + "SubAcctNo", this.SubAcctNo); this.SetParamSimple(map, prefix + "SubAcctName", this.SubAcctName); this.SetParamSimple(map, prefix + "TranAmt", this.TranAmt); this.SetParamSimple(map, prefix + "Commission", this.Commission); this.SetParamSimple(map, prefix + "TranDate", this.TranDate); this.SetParamSimple(map, prefix + "TranTime", this.TranTime); this.SetParamSimple(map, prefix + "FrontSeqNo", this.FrontSeqNo); this.SetParamSimple(map, prefix + "Remark", this.Remark); } } }