123456789101112131415161718192021222324252627282930313233 |
- <?php
- namespace AliyunMNS\Model;
- use AliyunMNS\Constants;
- use AliyunMNS\Exception\MnsException;
- class WebSocketAttributes
- {
- public $importanceLevel;
- public function __construct($importanceLevel)
- {
- $this->importanceLevel = $importanceLevel;
- }
- public function setImportanceLevel($importanceLevel)
- {
- $this->importanceLevel = $importanceLevel;
- }
- public function getImportanceLevel()
- {
- return $this->importanceLevel;
- }
- public function writeXML(\XMLWriter $xmlWriter)
- {
- $jsonArray = array(Constants::IMPORTANCE_LEVEL => $this->importanceLevel);
- $xmlWriter->writeElement(Constants::WEBSOCKET, json_encode($jsonArray));
- }
- }
- ?>
|