AlipayDataDataserviceMonitorCouponQueryRequest.php 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.data.dataservice.monitor.coupon.query request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-01-07 20:51:15
  7. */
  8. class AlipayDataDataserviceMonitorCouponQueryRequest
  9. {
  10. /**
  11. * 2016新春红包央视需要查询和展示监控平台数据信息,包括以下6类数据:
  12. 1、时间维度多行数据
  13. 2、时间维度单行数据
  14. 3、时间维度单行单值数据
  15. 4、无时间维度多行数据
  16. 5、无时间维度单行数据
  17. 6、无时间维度单行单值数据
  18. **/
  19. private $bizContent;
  20. private $apiParas = array();
  21. private $terminalType;
  22. private $terminalInfo;
  23. private $prodCode;
  24. private $apiVersion="1.0";
  25. private $notifyUrl;
  26. private $returnUrl;
  27. private $needEncrypt=false;
  28. public function setBizContent($bizContent)
  29. {
  30. $this->bizContent = $bizContent;
  31. $this->apiParas["biz_content"] = $bizContent;
  32. }
  33. public function getBizContent()
  34. {
  35. return $this->bizContent;
  36. }
  37. public function getApiMethodName()
  38. {
  39. return "alipay.data.dataservice.monitor.coupon.query";
  40. }
  41. public function setNotifyUrl($notifyUrl)
  42. {
  43. $this->notifyUrl=$notifyUrl;
  44. }
  45. public function getNotifyUrl()
  46. {
  47. return $this->notifyUrl;
  48. }
  49. public function setReturnUrl($returnUrl)
  50. {
  51. $this->returnUrl=$returnUrl;
  52. }
  53. public function getReturnUrl()
  54. {
  55. return $this->returnUrl;
  56. }
  57. public function getApiParas()
  58. {
  59. return $this->apiParas;
  60. }
  61. public function getTerminalType()
  62. {
  63. return $this->terminalType;
  64. }
  65. public function setTerminalType($terminalType)
  66. {
  67. $this->terminalType = $terminalType;
  68. }
  69. public function getTerminalInfo()
  70. {
  71. return $this->terminalInfo;
  72. }
  73. public function setTerminalInfo($terminalInfo)
  74. {
  75. $this->terminalInfo = $terminalInfo;
  76. }
  77. public function getProdCode()
  78. {
  79. return $this->prodCode;
  80. }
  81. public function setProdCode($prodCode)
  82. {
  83. $this->prodCode = $prodCode;
  84. }
  85. public function setApiVersion($apiVersion)
  86. {
  87. $this->apiVersion=$apiVersion;
  88. }
  89. public function getApiVersion()
  90. {
  91. return $this->apiVersion;
  92. }
  93. public function setNeedEncrypt($needEncrypt)
  94. {
  95. $this->needEncrypt=$needEncrypt;
  96. }
  97. public function getNeedEncrypt()
  98. {
  99. return $this->needEncrypt;
  100. }
  101. }