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

48 lines
738 B
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.top.oaid.merge request
*
* @author auto create
* @since 1.0, 2021.11.03
*/
class TopOaidMergeRequest
{
/**
* 合单请求列表最多支持100个。
**/
private $mergeList;
private $apiParas = array();
public function setMergeList($mergeList)
{
$this->mergeList = $mergeList;
$this->apiParas["merge_list"] = $mergeList;
}
public function getMergeList()
{
return $this->mergeList;
}
public function getApiMethodName()
{
return "taobao.top.oaid.merge";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}