TaobaoTbkDgCpaActivityDetailResults.cs 948 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability3261.Domain;
  5. public class TaobaoTbkDgCpaActivityDetailResults
  6. {
  7. /*
  8. 奖励明细数据,KV结构。字段释义见文档:https://www.yuque.com/docs/share/7ecf8cf1-7f99-4633-a2ed-f9b6f8116af5?#
  9. */
  10. private string? fieldDetail;
  11. /*
  12. 明细类型,1:预估明细,2:结算明细
  13. */
  14. private long? calcType;
  15. /*
  16. 明细记录主键id
  17. */
  18. private long? id;
  19. [JsonPropertyName("field_detail")]
  20. public string? FieldDetail
  21. {
  22. get => fieldDetail;
  23. set => this.fieldDetail = value;
  24. }
  25. [JsonPropertyName("calc_type")]
  26. public long? CalcType
  27. {
  28. get => calcType;
  29. set => this.calcType = value;
  30. }
  31. [JsonPropertyName("id")]
  32. public long? Id
  33. {
  34. get => id;
  35. set => this.id = value;
  36. }
  37. }