AlipayGotoneMessageMailSendRequest.php 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.gotone.message.mail.send request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2023-04-03 13:36:44
  7. */
  8. class AlipayGotoneMessageMailSendRequest
  9. {
  10. /**
  11. * 模板参数
  12. **/
  13. private $arguments;
  14. /**
  15. * 支付宝openId,用于支付宝用户在当前应用下的用户标识。
  16. **/
  17. private $openId;
  18. /**
  19. * 收件人邮箱地址
  20. **/
  21. private $receiver;
  22. /**
  23. * 邮件模板对应的serviceCode
  24. **/
  25. private $serviceCode;
  26. /**
  27. * 邮件标题
  28. **/
  29. private $subject;
  30. /**
  31. * 用户的支付宝ID
  32. **/
  33. private $userId;
  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 setArguments($arguments)
  43. {
  44. $this->arguments = $arguments;
  45. $this->apiParas["arguments"] = $arguments;
  46. }
  47. public function getArguments()
  48. {
  49. return $this->arguments;
  50. }
  51. public function setOpenId($openId)
  52. {
  53. $this->openId = $openId;
  54. $this->apiParas["open_id"] = $openId;
  55. }
  56. public function getOpenId()
  57. {
  58. return $this->openId;
  59. }
  60. public function setReceiver($receiver)
  61. {
  62. $this->receiver = $receiver;
  63. $this->apiParas["receiver"] = $receiver;
  64. }
  65. public function getReceiver()
  66. {
  67. return $this->receiver;
  68. }
  69. public function setServiceCode($serviceCode)
  70. {
  71. $this->serviceCode = $serviceCode;
  72. $this->apiParas["service_code"] = $serviceCode;
  73. }
  74. public function getServiceCode()
  75. {
  76. return $this->serviceCode;
  77. }
  78. public function setSubject($subject)
  79. {
  80. $this->subject = $subject;
  81. $this->apiParas["subject"] = $subject;
  82. }
  83. public function getSubject()
  84. {
  85. return $this->subject;
  86. }
  87. public function setUserId($userId)
  88. {
  89. $this->userId = $userId;
  90. $this->apiParas["user_id"] = $userId;
  91. }
  92. public function getUserId()
  93. {
  94. return $this->userId;
  95. }
  96. public function getApiMethodName()
  97. {
  98. return "alipay.gotone.message.mail.send";
  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. }