<?php
namespace Com\Pdd\Pop\Sdk\Api\Request;
use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
class PddStockGoodsIdToSkuQueryRequest extends PopBaseHttpRequest
{
public function __construct()
{
}
private $goodsId;
private $wareId;
protected function setUserParams(&$params)
{
$this->setUserParam($params, "goods_id", $this->goodsId);
$this->setUserParam($params, "ware_id", $this->wareId);
}
public function getVersion()
{
return "V1";
}
public function getDataType()
{
return "JSON";
}
public function getType()
{
return "pdd.stock.goods.id.to.sku.query";
}
public function setGoodsId($goodsId)
{
$this->goodsId = $goodsId;
}
public function setWareId($wareId)
{
$this->wareId = $wareId;
}
}