Nenhuma Descrição

GetTopicAttributeRequest.php 539B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. namespace AliyunMNS\Requests;
  3. use AliyunMNS\Requests\BaseRequest;
  4. class GetTopicAttributeRequest extends BaseRequest
  5. {
  6. private $topicName;
  7. public function __construct($topicName)
  8. {
  9. parent::__construct('get', 'topics/' . $topicName);
  10. $this->topicName = $topicName;
  11. }
  12. public function getTopicName()
  13. {
  14. return $this->topicName;
  15. }
  16. public function generateBody()
  17. {
  18. return NULL;
  19. }
  20. public function generateQueryString()
  21. {
  22. return NULL;
  23. }
  24. }
  25. ?>