| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace Com\Pdd\Pop\Sdk\Api\Request;
- use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
- use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
- class PddDdkOrderDetailGetRequest extends PopBaseHttpRequest
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(String, "order_sn")
- */
- private $orderSn;
- /**
- * @JsonProperty(Integer, "query_order_type")
- */
- private $queryOrderType;
- protected function setUserParams(&$params)
- {
- $this->setUserParam($params, "order_sn", $this->orderSn);
- $this->setUserParam($params, "query_order_type", $this->queryOrderType);
- }
- public function getVersion()
- {
- return "V1";
- }
- public function getDataType()
- {
- return "JSON";
- }
- public function getType()
- {
- return "pdd.ddk.order.detail.get";
- }
- public function setOrderSn($orderSn)
- {
- $this->orderSn = $orderSn;
- }
- public function setQueryOrderType($queryOrderType)
- {
- $this->queryOrderType = $queryOrderType;
- }
- }
|