<?php
namespace Com\Pdd\Pop\Sdk\Api\Request;
use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
class PddAdApiUnitBidQueryBaseTargetProfileRequest extends PopBaseHttpRequest
{
public function __construct()
{
}
private $goodsId;
private $scenesType;
protected function setUserParams(&$params)
{
$this->setUserParam($params, "goodsId", $this->goodsId);
$this->setUserParam($params, "scenesType", $this->scenesType);
}
public function getVersion()
{
return "V1";
}
public function getDataType()
{
return "JSON";
}
public function getType()
{
return "pdd.ad.api.unit.bid.query.base.target.profile";
}
public function setGoodsId($goodsId)
{
$this->goodsId = $goodsId;
}
public function setScenesType($scenesType)
{
$this->scenesType = $scenesType;
}
}