REAPI/extend/sdk/taobao/top/request/TmcMessageProduceRequest.php
2024-09-29 15:43:18 +08:00

230 lines
5.3 KiB
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* TOP API: taobao.tmc.message.produce request
*
* @author auto create
* @since 1.0, 2022.09.19
*/
class TmcMessageProduceRequest
{
/**
* 消息内容的JSON表述必须按照topic的定义来填充
**/
private $content;
/**
* 延时参数 时间戳 预期发送时间
**/
private $delayMillis;
/**
* 消息的扩增属性用json格式表示
**/
private $exContent;
/**
* 提前过期 相对时间差 毫秒
**/
private $expiresMillis;
/**
* 回传的文件内容目前仅支持jpg,png,bmp,gif,pdf类型的文件文件最大1M。只有消息中有byte[]类型的数据时,才需要传此字段; 否则不需要传此字段。
**/
private $mediaContent;
/**
* 回传的文件内容目前仅支持jpg,png,bmp,gif,pdf类型的文件文件最大1M。只有消息中有byte[]类型的数据时,才需要传此字段; 否则不需要传此字段。具体对应到沙体中的什么值,请参考消息字段说明。
**/
private $mediaContent2;
/**
* 回传的文件内容目前仅支持jpg,png,bmp,gif,pdf类型的文件文件最大1M。只有消息中有byte[]类型的数据时,才需要传此字段; 否则不需要传此字段。具体对应到沙体中的什么值,请参考消息字段说明。
**/
private $mediaContent3;
/**
* 回传的文件内容目前仅支持jpg,png,bmp,gif,pdf类型的文件文件最大1M。只有消息中有byte[]类型的数据时,才需要传此字段; 否则不需要传此字段。具体对应到沙体中的什么值,请参考消息字段说明。
**/
private $mediaContent4;
/**
* 回传的文件内容目前仅支持jpg,png,bmp,gif,pdf类型的文件文件最大1M。只有消息中有byte[]类型的数据时,才需要传此字段; 否则不需要传此字段。具体对应到沙体中的什么值,请参考消息字段说明。
**/
private $mediaContent5;
/**
* 直发消息需要传入目标appkey
**/
private $targetAppkey;
/**
* 目标分组一般为default
**/
private $targetGroup;
/**
* 消息类型
**/
private $topic;
private $apiParas = array();
public function setContent($content)
{
$this->content = $content;
$this->apiParas["content"] = $content;
}
public function getContent()
{
return $this->content;
}
public function setDelayMillis($delayMillis)
{
$this->delayMillis = $delayMillis;
$this->apiParas["delay_millis"] = $delayMillis;
}
public function getDelayMillis()
{
return $this->delayMillis;
}
public function setExContent($exContent)
{
$this->exContent = $exContent;
$this->apiParas["ex_content"] = $exContent;
}
public function getExContent()
{
return $this->exContent;
}
public function setExpiresMillis($expiresMillis)
{
$this->expiresMillis = $expiresMillis;
$this->apiParas["expires_millis"] = $expiresMillis;
}
public function getExpiresMillis()
{
return $this->expiresMillis;
}
public function setMediaContent($mediaContent)
{
$this->mediaContent = $mediaContent;
$this->apiParas["media_content"] = $mediaContent;
}
public function getMediaContent()
{
return $this->mediaContent;
}
public function setMediaContent2($mediaContent2)
{
$this->mediaContent2 = $mediaContent2;
$this->apiParas["media_content2"] = $mediaContent2;
}
public function getMediaContent2()
{
return $this->mediaContent2;
}
public function setMediaContent3($mediaContent3)
{
$this->mediaContent3 = $mediaContent3;
$this->apiParas["media_content3"] = $mediaContent3;
}
public function getMediaContent3()
{
return $this->mediaContent3;
}
public function setMediaContent4($mediaContent4)
{
$this->mediaContent4 = $mediaContent4;
$this->apiParas["media_content4"] = $mediaContent4;
}
public function getMediaContent4()
{
return $this->mediaContent4;
}
public function setMediaContent5($mediaContent5)
{
$this->mediaContent5 = $mediaContent5;
$this->apiParas["media_content5"] = $mediaContent5;
}
public function getMediaContent5()
{
return $this->mediaContent5;
}
public function setTargetAppkey($targetAppkey)
{
$this->targetAppkey = $targetAppkey;
$this->apiParas["target_appkey"] = $targetAppkey;
}
public function getTargetAppkey()
{
return $this->targetAppkey;
}
public function setTargetGroup($targetGroup)
{
$this->targetGroup = $targetGroup;
$this->apiParas["target_group"] = $targetGroup;
}
public function getTargetGroup()
{
return $this->targetGroup;
}
public function setTopic($topic)
{
$this->topic = $topic;
$this->apiParas["topic"] = $topic;
}
public function getTopic()
{
return $this->topic;
}
public function getApiMethodName()
{
return "taobao.tmc.message.produce";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->content,"content");
RequestCheckUtil::checkMaxLength($this->content,122880,"content");
RequestCheckUtil::checkMaxLength($this->exContent,500,"exContent");
RequestCheckUtil::checkMaxLength($this->targetAppkey,256,"targetAppkey");
RequestCheckUtil::checkNotNull($this->topic,"topic");
RequestCheckUtil::checkMaxLength($this->topic,256,"topic");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}