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