TaobaoTbkItemInfoUpgradeGetStateSubsidyInfo.cs 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability371.Domain;
  5. public class TaobaoTbkItemInfoUpgradeGetStateSubsidyInfo
  6. {
  7. /*
  8. 最高优惠比例(%),入参具体IP时,仅展示该IP最高优惠比例。
  9. */
  10. private long? maxRebate;
  11. /*
  12. 最低优惠比例(%),入参具体IP时,仅展示该IP最低优惠比例。
  13. */
  14. private long? minRebate;
  15. /*
  16. 最高优惠金额(元,如15代表15 元),入参具体IP时,仅展示该IP最高优惠金额
  17. */
  18. private string? maxDiscount;
  19. /*
  20. 最低优惠金额(元,如15代表15 元),入参具体IP时,仅展示该IP最低优惠金额
  21. */
  22. private string? minDiscount;
  23. /*
  24. 国补生效区域(省份)。不入参IP时展示各可用省份;入参IP时,全国可用商品展示各可用省份,区域可用商品仅展示IP对应省份。
  25. */
  26. private IList<string>? provinceList;
  27. [JsonPropertyName("max_rebate")]
  28. public long? MaxRebate
  29. {
  30. get => maxRebate;
  31. set => this.maxRebate = value;
  32. }
  33. [JsonPropertyName("min_rebate")]
  34. public long? MinRebate
  35. {
  36. get => minRebate;
  37. set => this.minRebate = value;
  38. }
  39. [JsonPropertyName("max_discount")]
  40. public string? MaxDiscount
  41. {
  42. get => maxDiscount;
  43. set => this.maxDiscount = value;
  44. }
  45. [JsonPropertyName("min_discount")]
  46. public string? MinDiscount
  47. {
  48. get => minDiscount;
  49. set => this.minDiscount = value;
  50. }
  51. [JsonPropertyName("province_list")]
  52. public IList<string>? ProvinceList
  53. {
  54. get => provinceList;
  55. set => this.provinceList = value;
  56. }
  57. }