| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace Com\Pdd\Pop\Sdk\Api\Request;
- use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
- use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
- class PddGoodsSpecIdGetRequest extends PopBaseHttpRequest
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(Long, "parent_spec_id")
- */
- private $parentSpecId;
- /**
- * @JsonProperty(String, "spec_name")
- */
- private $specName;
- protected function setUserParams(&$params)
- {
- $this->setUserParam($params, "parent_spec_id", $this->parentSpecId);
- $this->setUserParam($params, "spec_name", $this->specName);
- }
- public function getVersion()
- {
- return "V1";
- }
- public function getDataType()
- {
- return "JSON";
- }
- public function getType()
- {
- return "pdd.goods.spec.id.get";
- }
- public function setParentSpecId($parentSpecId)
- {
- $this->parentSpecId = $parentSpecId;
- }
- public function setSpecName($specName)
- {
- $this->specName = $specName;
- }
- }
|