| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- <?php
- namespace Com\Pdd\Pop\Sdk\Api\Request;
- use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
- use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
- class PddLogisticsTicketGetRequest extends PopBaseHttpRequest
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(Long, "end_updated_at")
- */
- private $endUpdatedAt;
- /**
- * @JsonProperty(Integer, "page")
- */
- private $page;
- /**
- * @JsonProperty(Integer, "page_size")
- */
- private $pageSize;
- /**
- * @JsonProperty(Long, "start_updated_at")
- */
- private $startUpdatedAt;
- protected function setUserParams(&$params)
- {
- $this->setUserParam($params, "end_updated_at", $this->endUpdatedAt);
- $this->setUserParam($params, "page", $this->page);
- $this->setUserParam($params, "page_size", $this->pageSize);
- $this->setUserParam($params, "start_updated_at", $this->startUpdatedAt);
- }
- public function getVersion()
- {
- return "V1";
- }
- public function getDataType()
- {
- return "JSON";
- }
- public function getType()
- {
- return "pdd.logistics.ticket.get";
- }
- public function setEndUpdatedAt($endUpdatedAt)
- {
- $this->endUpdatedAt = $endUpdatedAt;
- }
- public function setPage($page)
- {
- $this->page = $page;
- }
- public function setPageSize($pageSize)
- {
- $this->pageSize = $pageSize;
- }
- public function setStartUpdatedAt($startUpdatedAt)
- {
- $this->startUpdatedAt = $startUpdatedAt;
- }
- }
|