12345678910111213141516171819202122232425262728293031323334 |
- // This file is auto-generated, don't edit it. Thanks.
- using System;
- using System.Collections.Generic;
- using System.IO;
- using Tea;
- namespace Alipay.EasySDK.Payment.Common.Models
- {
- public class TradeFundBill : TeaModel {
- [NameInMap("fund_channel")]
- [Validation(Required=true)]
- public string FundChannel { get; set; }
- [NameInMap("bank_code")]
- [Validation(Required=true)]
- public string BankCode { get; set; }
- [NameInMap("amount")]
- [Validation(Required=true)]
- public string Amount { get; set; }
- [NameInMap("real_amount")]
- [Validation(Required=true)]
- public string RealAmount { get; set; }
- [NameInMap("fund_type")]
- [Validation(Required=true)]
- public string FundType { get; set; }
- }
- }
|