TradeFundBill.cs 705 B

123456789101112131415161718192021222324252627282930
  1. // This file is auto-generated, don't edit it. Thanks.
  2. using System;
  3. using System.Collections.Generic;
  4. using System.IO;
  5. using Tea;
  6. namespace Alipay.EasySDK.Payment.FaceToFace.Models
  7. {
  8. public class TradeFundBill : TeaModel {
  9. [NameInMap("fund_channel")]
  10. [Validation(Required=true)]
  11. public string FundChannel { get; set; }
  12. [NameInMap("bank_code")]
  13. [Validation(Required=true)]
  14. public string BankCode { get; set; }
  15. [NameInMap("amount")]
  16. [Validation(Required=true)]
  17. public string Amount { get; set; }
  18. [NameInMap("real_amount")]
  19. [Validation(Required=true)]
  20. public string RealAmount { get; set; }
  21. }
  22. }