/* * 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 ApplyOutwardOrderRequest : AbstractModel { /// /// 对接方汇出指令编号 /// [JsonProperty("TransactionId")] public string TransactionId{ get; set; } /// /// 定价币种 /// [JsonProperty("PricingCurrency")] public string PricingCurrency{ get; set; } /// /// 源币种 /// [JsonProperty("SourceCurrency")] public string SourceCurrency{ get; set; } /// /// 目的币种 /// [JsonProperty("TargetCurrency")] public string TargetCurrency{ get; set; } /// /// 收款人类型 /// [JsonProperty("PayeeType")] public string PayeeType{ get; set; } /// /// 收款人账号 /// [JsonProperty("PayeeAccount")] public string PayeeAccount{ get; set; } /// /// 源币种金额 /// [JsonProperty("SourceAmount")] public float? SourceAmount{ get; set; } /// /// 目的金额 /// [JsonProperty("TargetAmount")] public float? TargetAmount{ get; set; } /// /// 收款人姓名 /// [JsonProperty("PayeeName")] public string PayeeName{ get; set; } /// /// 收款人地址 /// [JsonProperty("PayeeAddress")] public string PayeeAddress{ get; set; } /// /// 收款人银行账号类型 /// [JsonProperty("PayeeBankAccountType")] public string PayeeBankAccountType{ get; set; } /// /// 收款人国家或地区编码 /// [JsonProperty("PayeeCountryCode")] public string PayeeCountryCode{ get; set; } /// /// 收款人开户银行名称 /// [JsonProperty("PayeeBankName")] public string PayeeBankName{ get; set; } /// /// 收款人开户银行地址 /// [JsonProperty("PayeeBankAddress")] public string PayeeBankAddress{ get; set; } /// /// 收款人开户银行所在国家或地区编码 /// [JsonProperty("PayeeBankDistrict")] public string PayeeBankDistrict{ get; set; } /// /// 收款银行SwiftCode /// [JsonProperty("PayeeBankSwiftCode")] public string PayeeBankSwiftCode{ get; set; } /// /// 收款银行国际编码类型 /// [JsonProperty("PayeeBankType")] public string PayeeBankType{ get; set; } /// /// 收款银行国际编码 /// [JsonProperty("PayeeBankCode")] public string PayeeBankCode{ get; set; } /// /// 收款人附言 /// [JsonProperty("ReferenceForBeneficiary")] public string ReferenceForBeneficiary{ get; set; } /// /// 接入环境。沙箱环境填sandbox /// [JsonProperty("Profile")] public string Profile{ get; set; } /// /// For internal usage only. DO NOT USE IT. /// internal override void ToMap(Dictionary map, string prefix) { this.SetParamSimple(map, prefix + "TransactionId", this.TransactionId); this.SetParamSimple(map, prefix + "PricingCurrency", this.PricingCurrency); this.SetParamSimple(map, prefix + "SourceCurrency", this.SourceCurrency); this.SetParamSimple(map, prefix + "TargetCurrency", this.TargetCurrency); this.SetParamSimple(map, prefix + "PayeeType", this.PayeeType); this.SetParamSimple(map, prefix + "PayeeAccount", this.PayeeAccount); this.SetParamSimple(map, prefix + "SourceAmount", this.SourceAmount); this.SetParamSimple(map, prefix + "TargetAmount", this.TargetAmount); this.SetParamSimple(map, prefix + "PayeeName", this.PayeeName); this.SetParamSimple(map, prefix + "PayeeAddress", this.PayeeAddress); this.SetParamSimple(map, prefix + "PayeeBankAccountType", this.PayeeBankAccountType); this.SetParamSimple(map, prefix + "PayeeCountryCode", this.PayeeCountryCode); this.SetParamSimple(map, prefix + "PayeeBankName", this.PayeeBankName); this.SetParamSimple(map, prefix + "PayeeBankAddress", this.PayeeBankAddress); this.SetParamSimple(map, prefix + "PayeeBankDistrict", this.PayeeBankDistrict); this.SetParamSimple(map, prefix + "PayeeBankSwiftCode", this.PayeeBankSwiftCode); this.SetParamSimple(map, prefix + "PayeeBankType", this.PayeeBankType); this.SetParamSimple(map, prefix + "PayeeBankCode", this.PayeeBankCode); this.SetParamSimple(map, prefix + "ReferenceForBeneficiary", this.ReferenceForBeneficiary); this.SetParamSimple(map, prefix + "Profile", this.Profile); } } }