48 lines
752 B
PHP
48 lines
752 B
PHP
<?php
|
|
/**
|
|
* TOP API: taobao.top.connector.event.publish request
|
|
*
|
|
* @author auto create
|
|
* @since 1.0, 2023.11.15
|
|
*/
|
|
class TopConnectorEventPublishRequest
|
|
{
|
|
/**
|
|
* 发布事件列表
|
|
**/
|
|
private $entryList;
|
|
|
|
private $apiParas = array();
|
|
|
|
public function setEntryList($entryList)
|
|
{
|
|
$this->entryList = $entryList;
|
|
$this->apiParas["entry_list"] = $entryList;
|
|
}
|
|
|
|
public function getEntryList()
|
|
{
|
|
return $this->entryList;
|
|
}
|
|
|
|
public function getApiMethodName()
|
|
{
|
|
return "taobao.top.connector.event.publish";
|
|
}
|
|
|
|
public function getApiParas()
|
|
{
|
|
return $this->apiParas;
|
|
}
|
|
|
|
public function check()
|
|
{
|
|
|
|
}
|
|
|
|
public function putOtherTextParam($key, $value) {
|
|
$this->apiParas[$key] = $value;
|
|
$this->$key = $value;
|
|
}
|
|
}
|