AlipayPassTplContentUpdateRequest.php 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.pass.tpl.content.update request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-03-08 15:29:11
  7. */
  8. class AlipayPassTplContentUpdateRequest
  9. {
  10. /**
  11. * 代理商代替商户发放卡券后,再代替商户更新卡券时,此值为商户的pid/appid
  12. **/
  13. private $channelId;
  14. /**
  15. * 支付宝pass唯一标识
  16. **/
  17. private $serialNumber;
  18. /**
  19. * 券状态,支持更新为USED,CLOSED两种状态
  20. **/
  21. private $status;
  22. /**
  23. * 模版动态参数信息【支付宝pass模版参数键值对JSON字符串】
  24. **/
  25. private $tplParams;
  26. /**
  27. * 核销码串值【当状态变更为USED时,建议传入】
  28. **/
  29. private $verifyCode;
  30. /**
  31. * 核销方式,目前支持:wave(声波方式)、qrcode(二维码方式)、barcode(条码方式)、input(文本方式,即手工输入方式)。pass和verify_type不能同时为空
  32. **/
  33. private $verifyType;
  34. private $apiParas = array();
  35. private $terminalType;
  36. private $terminalInfo;
  37. private $prodCode;
  38. private $apiVersion="1.0";
  39. private $notifyUrl;
  40. private $returnUrl;
  41. private $needEncrypt=false;
  42. public function setChannelId($channelId)
  43. {
  44. $this->channelId = $channelId;
  45. $this->apiParas["channel_id"] = $channelId;
  46. }
  47. public function getChannelId()
  48. {
  49. return $this->channelId;
  50. }
  51. public function setSerialNumber($serialNumber)
  52. {
  53. $this->serialNumber = $serialNumber;
  54. $this->apiParas["serial_number"] = $serialNumber;
  55. }
  56. public function getSerialNumber()
  57. {
  58. return $this->serialNumber;
  59. }
  60. public function setStatus($status)
  61. {
  62. $this->status = $status;
  63. $this->apiParas["status"] = $status;
  64. }
  65. public function getStatus()
  66. {
  67. return $this->status;
  68. }
  69. public function setTplParams($tplParams)
  70. {
  71. $this->tplParams = $tplParams;
  72. $this->apiParas["tpl_params"] = $tplParams;
  73. }
  74. public function getTplParams()
  75. {
  76. return $this->tplParams;
  77. }
  78. public function setVerifyCode($verifyCode)
  79. {
  80. $this->verifyCode = $verifyCode;
  81. $this->apiParas["verify_code"] = $verifyCode;
  82. }
  83. public function getVerifyCode()
  84. {
  85. return $this->verifyCode;
  86. }
  87. public function setVerifyType($verifyType)
  88. {
  89. $this->verifyType = $verifyType;
  90. $this->apiParas["verify_type"] = $verifyType;
  91. }
  92. public function getVerifyType()
  93. {
  94. return $this->verifyType;
  95. }
  96. public function getApiMethodName()
  97. {
  98. return "alipay.pass.tpl.content.update";
  99. }
  100. public function setNotifyUrl($notifyUrl)
  101. {
  102. $this->notifyUrl=$notifyUrl;
  103. }
  104. public function getNotifyUrl()
  105. {
  106. return $this->notifyUrl;
  107. }
  108. public function setReturnUrl($returnUrl)
  109. {
  110. $this->returnUrl=$returnUrl;
  111. }
  112. public function getReturnUrl()
  113. {
  114. return $this->returnUrl;
  115. }
  116. public function getApiParas()
  117. {
  118. return $this->apiParas;
  119. }
  120. public function getTerminalType()
  121. {
  122. return $this->terminalType;
  123. }
  124. public function setTerminalType($terminalType)
  125. {
  126. $this->terminalType = $terminalType;
  127. }
  128. public function getTerminalInfo()
  129. {
  130. return $this->terminalInfo;
  131. }
  132. public function setTerminalInfo($terminalInfo)
  133. {
  134. $this->terminalInfo = $terminalInfo;
  135. }
  136. public function getProdCode()
  137. {
  138. return $this->prodCode;
  139. }
  140. public function setProdCode($prodCode)
  141. {
  142. $this->prodCode = $prodCode;
  143. }
  144. public function setApiVersion($apiVersion)
  145. {
  146. $this->apiVersion=$apiVersion;
  147. }
  148. public function getApiVersion()
  149. {
  150. return $this->apiVersion;
  151. }
  152. public function setNeedEncrypt($needEncrypt)
  153. {
  154. $this->needEncrypt=$needEncrypt;
  155. }
  156. public function getNeedEncrypt()
  157. {
  158. return $this->needEncrypt;
  159. }
  160. }