PresetPayToolInfo.cs 484 B

12345678910111213141516171819202122
  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.Common.Models
  7. {
  8. public class PresetPayToolInfo : TeaModel {
  9. [NameInMap("amount")]
  10. [Validation(Required=true)]
  11. public List<string> Amount { get; set; }
  12. [NameInMap("assert_type_code")]
  13. [Validation(Required=true)]
  14. public string AssertTypeCode { get; set; }
  15. }
  16. }