OpenSmsSendvercodeRequest.php 818 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?php
  2. /**
  3. * TOP API: taobao.open.sms.sendvercode request
  4. *
  5. * @author auto create
  6. * @since 1.0, 2015.12.25
  7. */
  8. class OpenSmsSendvercodeRequest
  9. {
  10. /**
  11. * 发送验证码请求
  12. **/
  13. private $sendVerCodeRequest;
  14. private $apiParas = array();
  15. public function setSendVerCodeRequest($sendVerCodeRequest)
  16. {
  17. $this->sendVerCodeRequest = $sendVerCodeRequest;
  18. $this->apiParas["send_ver_code_request"] = $sendVerCodeRequest;
  19. }
  20. public function getSendVerCodeRequest()
  21. {
  22. return $this->sendVerCodeRequest;
  23. }
  24. public function getApiMethodName()
  25. {
  26. return "taobao.open.sms.sendvercode";
  27. }
  28. public function getApiParas()
  29. {
  30. return $this->apiParas;
  31. }
  32. public function check()
  33. {
  34. }
  35. public function putOtherTextParam($key, $value) {
  36. $this->apiParas[$key] = $value;
  37. $this->$key = $value;
  38. }
  39. }