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

49 lines
797 B
PHP
Raw 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.item.update.delisting.tmall request
*
* @author auto create
* @since 1.0, 2022.09.19
*/
class ItemUpdateDelistingTmallRequest
{
/**
* 商品数字ID该参数必须
**/
private $numIid;
private $apiParas = array();
public function setNumIid($numIid)
{
$this->numIid = $numIid;
$this->apiParas["num_iid"] = $numIid;
}
public function getNumIid()
{
return $this->numIid;
}
public function getApiMethodName()
{
return "taobao.item.update.delisting.tmall";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->numIid,"numIid");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}