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

67 lines
1.2 KiB
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.picture.update request
*
* @author auto create
* @since 1.0, 2024.03.14
*/
class PictureUpdateRequest
{
/**
* 新的图片名最大长度50字符不能为空
**/
private $newName;
/**
* 要更改名字的图片的id
**/
private $pictureId;
private $apiParas = array();
public function setNewName($newName)
{
$this->newName = $newName;
$this->apiParas["new_name"] = $newName;
}
public function getNewName()
{
return $this->newName;
}
public function setPictureId($pictureId)
{
$this->pictureId = $pictureId;
$this->apiParas["picture_id"] = $pictureId;
}
public function getPictureId()
{
return $this->pictureId;
}
public function getApiMethodName()
{
return "taobao.picture.update";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkNotNull($this->newName,"newName");
RequestCheckUtil::checkMaxLength($this->newName,50,"newName");
RequestCheckUtil::checkNotNull($this->pictureId,"pictureId");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}