AlipayOpenApiGenericResponse.cs 798 B

12345678910111213141516171819202122232425262728293031323334
  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.Util.Generic.Models
  7. {
  8. public class AlipayOpenApiGenericResponse : TeaModel {
  9. [NameInMap("http_body")]
  10. [Validation(Required=true)]
  11. public string HttpBody { get; set; }
  12. [NameInMap("code")]
  13. [Validation(Required=true)]
  14. public string Code { get; set; }
  15. [NameInMap("msg")]
  16. [Validation(Required=true)]
  17. public string Msg { get; set; }
  18. [NameInMap("sub_code")]
  19. [Validation(Required=true)]
  20. public string SubCode { get; set; }
  21. [NameInMap("sub_msg")]
  22. [Validation(Required=true)]
  23. public string SubMsg { get; set; }
  24. }
  25. }