/* * 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 WithdrawCashMembershipRequest : AbstractModel { /// /// String(22),商户号(签约客户号) /// [JsonProperty("MrchCode")] public string MrchCode{ get; set; } /// /// STRING(150),交易网名称(市场名称) /// [JsonProperty("TranWebName")] public string TranWebName{ get; set; } /// /// STRING(5),会员证件类型(详情见“常见问题”) /// [JsonProperty("MemberGlobalType")] public string MemberGlobalType{ get; set; } /// /// STRING(32),会员证件号码 /// [JsonProperty("MemberGlobalId")] public string MemberGlobalId{ get; set; } /// /// STRING(32),交易网会员代码 /// [JsonProperty("TranNetMemberCode")] public string TranNetMemberCode{ get; set; } /// /// STRING(150),会员名称 /// [JsonProperty("MemberName")] public string MemberName{ get; set; } /// /// STRING(50),提现账号(银行卡) /// [JsonProperty("TakeCashAcctNo")] public string TakeCashAcctNo{ get; set; } /// /// STRING(150),出金账户名称(银行卡户名) /// [JsonProperty("OutAmtAcctName")] public string OutAmtAcctName{ get; set; } /// /// STRING(3),币种(默认为RMB) /// [JsonProperty("Ccy")] public string Ccy{ get; set; } /// /// STRING(20),可提现金额 /// [JsonProperty("CashAmt")] public string CashAmt{ get; set; } /// /// STRING(300),备注(建议可送订单号,可在对账文件的备注字段获取到) /// [JsonProperty("Remark")] public string Remark{ get; set; } /// /// STRING(1027),保留域 /// [JsonProperty("ReservedMsg")] public string ReservedMsg{ get; set; } /// /// STRING(300),网银签名 /// [JsonProperty("WebSign")] public string WebSign{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "MrchCode", this.MrchCode); this.SetParamSimple(map, prefix + "TranWebName", this.TranWebName); this.SetParamSimple(map, prefix + "MemberGlobalType", this.MemberGlobalType); this.SetParamSimple(map, prefix + "MemberGlobalId", this.MemberGlobalId); this.SetParamSimple(map, prefix + "TranNetMemberCode", this.TranNetMemberCode); this.SetParamSimple(map, prefix + "MemberName", this.MemberName); this.SetParamSimple(map, prefix + "TakeCashAcctNo", this.TakeCashAcctNo); this.SetParamSimple(map, prefix + "OutAmtAcctName", this.OutAmtAcctName); this.SetParamSimple(map, prefix + "Ccy", this.Ccy); this.SetParamSimple(map, prefix + "CashAmt", this.CashAmt); this.SetParamSimple(map, prefix + "Remark", this.Remark); this.SetParamSimple(map, prefix + "ReservedMsg", this.ReservedMsg); this.SetParamSimple(map, prefix + "WebSign", this.WebSign); } } }