TaobaoTbkDgCpaActivityReportVegasCpaReportDTO.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. using System.Text.Json.Serialization;
  2. using System.Collections.Generic;
  3. using Topsdk.Util;
  4. namespace Topsdk.Top.Ability3261.Domain;
  5. public class TaobaoTbkDgCpaActivityReportVegasCpaReportDTO
  6. {
  7. /*
  8. 符合奖励要求的累计用户数;按入参是预估/结算,区分用户数为预估or可结算结果;
  9. */
  10. private long? union30dLxUv;
  11. /*
  12. 奖励金额;按入参是预估/结算,区分获得金额为预估or可结算结果;
  13. */
  14. private string? rewardAmount;
  15. /*
  16. rid,当查询数据为rid维度时返回该字段
  17. */
  18. private long? relationId;
  19. /*
  20. 统计日期(统计活动期内,截止 统计日期 的数据)
  21. */
  22. private string? bizDate;
  23. /*
  24. 媒体三段式id,当查询数据为pid维度时返回该字段
  25. */
  26. private string? pid;
  27. /*
  28. 数据类型:1预估 2结算
  29. */
  30. private long? queryType;
  31. /*
  32. 活动相关数据信息
  33. */
  34. private string? extInfo;
  35. [JsonPropertyName("union_30d_lx_uv")]
  36. public long? Union30dLxUv
  37. {
  38. get => union30dLxUv;
  39. set => this.union30dLxUv = value;
  40. }
  41. [JsonPropertyName("reward_amount")]
  42. public string? RewardAmount
  43. {
  44. get => rewardAmount;
  45. set => this.rewardAmount = value;
  46. }
  47. [JsonPropertyName("relation_id")]
  48. public long? RelationId
  49. {
  50. get => relationId;
  51. set => this.relationId = value;
  52. }
  53. [JsonPropertyName("biz_date")]
  54. public string? BizDate
  55. {
  56. get => bizDate;
  57. set => this.bizDate = value;
  58. }
  59. [JsonPropertyName("pid")]
  60. public string? Pid
  61. {
  62. get => pid;
  63. set => this.pid = value;
  64. }
  65. [JsonPropertyName("query_type")]
  66. public long? QueryType
  67. {
  68. get => queryType;
  69. set => this.queryType = value;
  70. }
  71. [JsonPropertyName("ext_info")]
  72. public string? ExtInfo
  73. {
  74. get => extInfo;
  75. set => this.extInfo = value;
  76. }
  77. }