You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
wkcrm/extend/alimsg/msg_sdk/lib/MNS/Model/MessageAttributes.php

54 lines
1.1 KiB

4 years ago
<?php
namespace AliyunMNS\Model;
use AliyunMNS\Constants;
/**
* Please refer to
* https://docs.aliyun.com/?spm=#/pub/mns/api_reference/intro&intro
* for more details
*/
class MessageAttributes
{
// if both SmsAttributes and BatchSmsAttributes are set, only one will take effect
private $attributes;
public function __construct(
$attributes = NULL)
{
$this->attributes = $attributes;
}
public function setAttributes($attributes)
{
$this->attributes = $attributes;
}
public function getAttributes()
{
return $this->attributes;
}
public function writeXML(\XMLWriter $xmlWriter)
{
$xmlWriter->startELement(Constants::MESSAGE_ATTRIBUTES);
if ($this->attributes != NULL)
{
if (is_array($this->attributes))
{
foreach ($this->attributes as $subAttributes)
{
$subAttributes->writeXML($xmlWriter);
}
}
else
{
$this->attributes->writeXML($xmlWriter);
}
}
$xmlWriter->endElement();
}
}
?>