| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace Com\Pdd\Pop\Sdk\Api\Request;
- use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
- use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
- class PddGoodsMaterialQueryRequest extends PopBaseHttpRequest
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(List<Long>, "goods_id_list")
- */
- private $goodsIdList;
- /**
- * @JsonProperty(List<Long>, "type_list")
- */
- private $typeList;
- protected function setUserParams(&$params)
- {
- $this->setUserParam($params, "goods_id_list", $this->goodsIdList);
- $this->setUserParam($params, "type_list", $this->typeList);
- }
- public function getVersion()
- {
- return "V1";
- }
- public function getDataType()
- {
- return "JSON";
- }
- public function getType()
- {
- return "pdd.goods.material.query";
- }
- public function setGoodsIdList($goodsIdList)
- {
- $this->goodsIdList = $goodsIdList;
- }
- public function setTypeList($typeList)
- {
- $this->typeList = $typeList;
- }
- }
|