AlipayGotoneMessageMailSendRequest.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. <?php
  2. /**
  3. * ALIPAY API: alipay.gotone.message.mail.send request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2019-03-08 15:29:11
  7. */
  8. class AlipayGotoneMessageMailSendRequest
  9. {
  10. /**
  11. * 模板参数
  12. **/
  13. private $arguments;
  14. /**
  15. * 收件人邮箱地址
  16. **/
  17. private $receiver;
  18. /**
  19. * 邮件模板对应的serviceCode
  20. **/
  21. private $serviceCode;
  22. /**
  23. * 邮件标题
  24. **/
  25. private $subject;
  26. /**
  27. * 用户的支付宝ID
  28. **/
  29. private $userId;
  30. private $apiParas = array();
  31. private $terminalType;
  32. private $terminalInfo;
  33. private $prodCode;
  34. private $apiVersion="1.0";
  35. private $notifyUrl;
  36. private $returnUrl;
  37. private $needEncrypt=false;
  38. public function setArguments($arguments)
  39. {
  40. $this->arguments = $arguments;
  41. $this->apiParas["arguments"] = $arguments;
  42. }
  43. public function getArguments()
  44. {
  45. return $this->arguments;
  46. }
  47. public function setReceiver($receiver)
  48. {
  49. $this->receiver = $receiver;
  50. $this->apiParas["receiver"] = $receiver;
  51. }
  52. public function getReceiver()
  53. {
  54. return $this->receiver;
  55. }
  56. public function setServiceCode($serviceCode)
  57. {
  58. $this->serviceCode = $serviceCode;
  59. $this->apiParas["service_code"] = $serviceCode;
  60. }
  61. public function getServiceCode()
  62. {
  63. return $this->serviceCode;
  64. }
  65. public function setSubject($subject)
  66. {
  67. $this->subject = $subject;
  68. $this->apiParas["subject"] = $subject;
  69. }
  70. public function getSubject()
  71. {
  72. return $this->subject;
  73. }
  74. public function setUserId($userId)
  75. {
  76. $this->userId = $userId;
  77. $this->apiParas["user_id"] = $userId;
  78. }
  79. public function getUserId()
  80. {
  81. return $this->userId;
  82. }
  83. public function getApiMethodName()
  84. {
  85. return "alipay.gotone.message.mail.send";
  86. }
  87. public function setNotifyUrl($notifyUrl)
  88. {
  89. $this->notifyUrl=$notifyUrl;
  90. }
  91. public function getNotifyUrl()
  92. {
  93. return $this->notifyUrl;
  94. }
  95. public function setReturnUrl($returnUrl)
  96. {
  97. $this->returnUrl=$returnUrl;
  98. }
  99. public function getReturnUrl()
  100. {
  101. return $this->returnUrl;
  102. }
  103. public function getApiParas()
  104. {
  105. return $this->apiParas;
  106. }
  107. public function getTerminalType()
  108. {
  109. return $this->terminalType;
  110. }
  111. public function setTerminalType($terminalType)
  112. {
  113. $this->terminalType = $terminalType;
  114. }
  115. public function getTerminalInfo()
  116. {
  117. return $this->terminalInfo;
  118. }
  119. public function setTerminalInfo($terminalInfo)
  120. {
  121. $this->terminalInfo = $terminalInfo;
  122. }
  123. public function getProdCode()
  124. {
  125. return $this->prodCode;
  126. }
  127. public function setProdCode($prodCode)
  128. {
  129. $this->prodCode = $prodCode;
  130. }
  131. public function setApiVersion($apiVersion)
  132. {
  133. $this->apiVersion=$apiVersion;
  134. }
  135. public function getApiVersion()
  136. {
  137. return $this->apiVersion;
  138. }
  139. public function setNeedEncrypt($needEncrypt)
  140. {
  141. $this->needEncrypt=$needEncrypt;
  142. }
  143. public function getNeedEncrypt()
  144. {
  145. return $this->needEncrypt;
  146. }
  147. }