| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace Com\Pdd\Pop\Sdk\Api\Request;
- use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
- use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
- class PddDeleteDraftCommitRequest extends PopBaseHttpRequest
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(Long, "goods_commit_id")
- */
- private $goodsCommitId;
- protected function setUserParams(&$params)
- {
- $this->setUserParam($params, "goods_commit_id", $this->goodsCommitId);
- }
- public function getVersion()
- {
- return "V1";
- }
- public function getDataType()
- {
- return "JSON";
- }
- public function getType()
- {
- return "pdd.delete.draft.commit";
- }
- public function setGoodsCommitId($goodsCommitId)
- {
- $this->goodsCommitId = $goodsCommitId;
- }
- }
|