AlipayDataDataserviceAdConversionBatchqueryModel.cs 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System.Collections.Generic;
  2. using System.Text.Json.Serialization;
  3. namespace Essensoft.Paylink.Alipay.Domain
  4. {
  5. /// <summary>
  6. /// AlipayDataDataserviceAdConversionBatchqueryModel Data Structure.
  7. /// </summary>
  8. public class AlipayDataDataserviceAdConversionBatchqueryModel : AlipayObject
  9. {
  10. /// <summary>
  11. /// 灯火平台提供给外部系统的访问token
  12. /// </summary>
  13. [JsonPropertyName("biz_token")]
  14. public string BizToken { get; set; }
  15. /// <summary>
  16. /// 转化事件ID列表
  17. /// </summary>
  18. [JsonPropertyName("conversion_id_list")]
  19. public List<string> ConversionIdList { get; set; }
  20. /// <summary>
  21. /// 转化事件类型: COLLECT_NORMAL - 免费留资 COLLECT_TRADE - 付费留资 CPA_TMALL_MEMBER_JOIN - 入会 等等
  22. /// </summary>
  23. [JsonPropertyName("conversion_type")]
  24. public string ConversionType { get; set; }
  25. /// <summary>
  26. /// 分页参数之页数,从1开始
  27. /// </summary>
  28. [JsonPropertyName("page_no")]
  29. public long PageNo { get; set; }
  30. /// <summary>
  31. /// 分页参数之每页大小,最大为1000
  32. /// </summary>
  33. [JsonPropertyName("page_size")]
  34. public long PageSize { get; set; }
  35. /// <summary>
  36. /// 商家在灯火侧的id
  37. /// </summary>
  38. [JsonPropertyName("principal_id")]
  39. public long PrincipalId { get; set; }
  40. }
  41. }