123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace AliyunMNS\Requests;
- use AliyunMNS\Requests\BaseRequest;
- class GetTopicAttributeRequest extends BaseRequest
- {
- private $topicName;
- public function __construct($topicName)
- {
- parent::__construct('get', 'topics/' . $topicName);
- $this->topicName = $topicName;
- }
- public function getTopicName()
- {
- return $this->topicName;
- }
- public function generateBody()
- {
- return NULL;
- }
- public function generateQueryString()
- {
- return NULL;
- }
- }
- ?>
|