AlipayPayCodecQrcodecacheAddModel.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. namespace Essensoft.AspNetCore.Payment.Alipay.Domain
  4. {
  5. /// <summary>
  6. /// AlipayPayCodecQrcodecacheAddModel Data Structure.
  7. /// </summary>
  8. public class AlipayPayCodecQrcodecacheAddModel : AlipayObject
  9. {
  10. /// <summary>
  11. /// 是否需要gzip压缩
  12. /// </summary>
  13. [JsonPropertyName("compress")]
  14. public bool Compress { get; set; }
  15. /// <summary>
  16. /// 批量json的键值对
  17. /// </summary>
  18. [JsonPropertyName("json")]
  19. public List<string> Json { get; set; }
  20. /// <summary>
  21. /// bizType_gridId
  22. /// </summary>
  23. [JsonPropertyName("key")]
  24. public string Key { get; set; }
  25. /// <summary>
  26. /// 缓存时长,单位是秒
  27. /// </summary>
  28. [JsonPropertyName("time")]
  29. public long Time { get; set; }
  30. /// <summary>
  31. /// 码地址静态信息分隔符码地址静态信息
  32. /// </summary>
  33. [JsonPropertyName("value")]
  34. public string Value { get; set; }
  35. }
  36. }