TaobaoTbkItemInfoUpgradeGetFinalIncomeInfo.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability371.Domain;
  5. public class TaobaoTbkItemInfoUpgradeGetFinalIncomeInfo
  6. {
  7. /*
  8. 商品佣金比率
  9. */
  10. private string? commissionRate;
  11. /*
  12. 商品佣金金额
  13. */
  14. private string? commissionAmount;
  15. /*
  16. 补贴比率
  17. */
  18. private string? subsidyRate;
  19. /*
  20. 补贴金额
  21. */
  22. private string? subsidyAmount;
  23. /*
  24. 补贴上限;仅在单笔订单命中补贴上限时返回结果否则出参为空
  25. */
  26. private string? subsidyUpperLimit;
  27. /*
  28. 补贴类型
  29. */
  30. private string? subsidyType;
  31. [JsonPropertyName("commission_rate")]
  32. public string? CommissionRate
  33. {
  34. get => commissionRate;
  35. set => this.commissionRate = value;
  36. }
  37. [JsonPropertyName("commission_amount")]
  38. public string? CommissionAmount
  39. {
  40. get => commissionAmount;
  41. set => this.commissionAmount = value;
  42. }
  43. [JsonPropertyName("subsidy_rate")]
  44. public string? SubsidyRate
  45. {
  46. get => subsidyRate;
  47. set => this.subsidyRate = value;
  48. }
  49. [JsonPropertyName("subsidy_amount")]
  50. public string? SubsidyAmount
  51. {
  52. get => subsidyAmount;
  53. set => this.subsidyAmount = value;
  54. }
  55. [JsonPropertyName("subsidy_upper_limit")]
  56. public string? SubsidyUpperLimit
  57. {
  58. get => subsidyUpperLimit;
  59. set => this.subsidyUpperLimit = value;
  60. }
  61. [JsonPropertyName("subsidy_type")]
  62. public string? SubsidyType
  63. {
  64. get => subsidyType;
  65. set => this.subsidyType = value;
  66. }
  67. }