66 lines
1005 B
PHP
66 lines
1005 B
PHP
![]() |
<?php
|
|||
|
/**
|
|||
|
* TOP API: taobao.item.propimg.delete request
|
|||
|
*
|
|||
|
* @author auto create
|
|||
|
* @since 1.0, 2022.05.24
|
|||
|
*/
|
|||
|
class ItemPropimgDeleteRequest
|
|||
|
{
|
|||
|
/**
|
|||
|
* 商品属性图片ID
|
|||
|
**/
|
|||
|
private $id;
|
|||
|
|
|||
|
/**
|
|||
|
* 商品数字ID,必选
|
|||
|
**/
|
|||
|
private $numIid;
|
|||
|
|
|||
|
private $apiParas = array();
|
|||
|
|
|||
|
public function setId($id)
|
|||
|
{
|
|||
|
$this->id = $id;
|
|||
|
$this->apiParas["id"] = $id;
|
|||
|
}
|
|||
|
|
|||
|
public function getId()
|
|||
|
{
|
|||
|
return $this->id;
|
|||
|
}
|
|||
|
|
|||
|
public function setNumIid($numIid)
|
|||
|
{
|
|||
|
$this->numIid = $numIid;
|
|||
|
$this->apiParas["num_iid"] = $numIid;
|
|||
|
}
|
|||
|
|
|||
|
public function getNumIid()
|
|||
|
{
|
|||
|
return $this->numIid;
|
|||
|
}
|
|||
|
|
|||
|
public function getApiMethodName()
|
|||
|
{
|
|||
|
return "taobao.item.propimg.delete";
|
|||
|
}
|
|||
|
|
|||
|
public function getApiParas()
|
|||
|
{
|
|||
|
return $this->apiParas;
|
|||
|
}
|
|||
|
|
|||
|
public function check()
|
|||
|
{
|
|||
|
|
|||
|
RequestCheckUtil::checkNotNull($this->id,"id");
|
|||
|
RequestCheckUtil::checkNotNull($this->numIid,"numIid");
|
|||
|
}
|
|||
|
|
|||
|
public function putOtherTextParam($key, $value) {
|
|||
|
$this->apiParas[$key] = $value;
|
|||
|
$this->$key = $value;
|
|||
|
}
|
|||
|
}
|