REAPI/extend/sdk/taobao/top/request/TopOaidMergeRequest.php

48 lines
738 B
PHP
Raw Normal View History

2024-09-29 15:43:18 +08:00
<?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;
}
}