TemplateRemoveRequest.php 795 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. class TemplateRemoveRequest extends SdkRequest {
  3. const REQUEST_URL = "/v2/template/remove";
  4. private $templateId;
  5. public function getUrl() {
  6. return self::REQUEST_URL;
  7. }
  8. public function getHttpParamers() {
  9. $paramSwitcher = ParamSwitcher::instanceParam();
  10. $paramSwitcher->addParam('templateId', $this->templateId);
  11. $httpParameters = HttpParameter::httpGetParamer();
  12. $httpParameters->setParams($paramSwitcher->getParams());
  13. return $httpParameters;
  14. }
  15. /**
  16. * @return mixed
  17. */
  18. public function getTemplateId()
  19. {
  20. return $this->templateId;
  21. }
  22. /**
  23. * @param mixed $templateId
  24. */
  25. public function setTemplateId($templateId)
  26. {
  27. $this->templateId = $templateId;
  28. }
  29. }