| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- <?php
- namespace Com\Pdd\Pop\Sdk\Api\Request;
- use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
- use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
- class PddFlightOrderQuerysnRequest extends PopBaseHttpRequest
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(String, "trace_id")
- */
- private $traceId;
- /**
- * @JsonProperty(String, "travel_sn")
- */
- private $travelSn;
- protected function setUserParams(&$params)
- {
- $this->setUserParam($params, "trace_id", $this->traceId);
- $this->setUserParam($params, "travel_sn", $this->travelSn);
- }
- public function getVersion()
- {
- return "V1";
- }
- public function getDataType()
- {
- return "JSON";
- }
- public function getType()
- {
- return "pdd.flight.order.querysn";
- }
- public function setTraceId($traceId)
- {
- $this->traceId = $traceId;
- }
- public function setTravelSn($travelSn)
- {
- $this->travelSn = $travelSn;
- }
- }
|