$timestamp
$timestamp :
Pop request类
<?php
namespace Com\Pdd\Pop\Sdk\Api\Request;
use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
class PddAdApiGoodsQueryLongImagesRequest extends PopBaseHttpRequest
{
public function __construct()
{
}
/**
* @JsonProperty(Long, "goodsId")
*/
private $goodsId;
protected function setUserParams(&$params)
{
$this->setUserParam($params, "goodsId", $this->goodsId);
}
public function getVersion()
{
return "V1";
}
public function getDataType()
{
return "JSON";
}
public function getType()
{
return "pdd.ad.api.goods.query.long.images";
}
public function setGoodsId($goodsId)
{
$this->goodsId = $goodsId;
}
}