| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438 |
- <?php
- namespace Com\Pdd\Pop\Sdk\Api\Request;
- use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
- use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
- class PddTrainCallbackGrabRequest extends PopBaseHttpRequest
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(String, "arrive_station")
- */
- private $arriveStation;
- /**
- * @JsonProperty(String, "arrive_station_code")
- */
- private $arriveStationCode;
- /**
- * @JsonProperty(String, "arrive_time")
- */
- private $arriveTime;
- /**
- * @JsonProperty(Integer, "code")
- */
- private $code;
- /**
- * @JsonProperty(String, "crh_order_id")
- */
- private $crhOrderId;
- /**
- * @JsonProperty(String, "depart_station")
- */
- private $departStation;
- /**
- * @JsonProperty(String, "depart_station_code")
- */
- private $departStationCode;
- /**
- * @JsonProperty(String, "depart_time")
- */
- private $departTime;
- /**
- * @JsonProperty(String, "msg")
- */
- private $msg;
- /**
- * @JsonProperty(String, "order_id")
- */
- private $orderId;
- /**
- * @JsonProperty(Long, "order_ticket_price")
- */
- private $orderTicketPrice;
- /**
- * @JsonProperty(String, "order_time")
- */
- private $orderTime;
- /**
- * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddTrainCallbackGrabRequest_PassengersItem>, "passengers")
- */
- private $passengers;
- /**
- * @JsonProperty(String, "pdd_order_id")
- */
- private $pddOrderId;
- /**
- * @JsonProperty(Integer, "ticket_num")
- */
- private $ticketNum;
- /**
- * @JsonProperty(String, "train_date")
- */
- private $trainDate;
- /**
- * @JsonProperty(String, "train_no")
- */
- private $trainNo;
- /**
- * @JsonProperty(String, "travel_time")
- */
- private $travelTime;
- /**
- * @JsonProperty(String, "vendor_time")
- */
- private $vendorTime;
- /**
- * @JsonProperty(String, "end_time")
- */
- private $endTime;
- /**
- * @JsonProperty(Integer, "channel")
- */
- private $channel;
- /**
- * @JsonProperty(Integer, "id_card_check_in")
- */
- private $idCardCheckIn;
- /**
- * @JsonProperty(String, "gate_no")
- */
- private $gateNo;
- /**
- * @JsonProperty(String, "distance")
- */
- private $distance;
- protected function setUserParams(&$params)
- {
- $this->setUserParam($params, "arrive_station", $this->arriveStation);
- $this->setUserParam($params, "arrive_station_code", $this->arriveStationCode);
- $this->setUserParam($params, "arrive_time", $this->arriveTime);
- $this->setUserParam($params, "code", $this->code);
- $this->setUserParam($params, "crh_order_id", $this->crhOrderId);
- $this->setUserParam($params, "depart_station", $this->departStation);
- $this->setUserParam($params, "depart_station_code", $this->departStationCode);
- $this->setUserParam($params, "depart_time", $this->departTime);
- $this->setUserParam($params, "msg", $this->msg);
- $this->setUserParam($params, "order_id", $this->orderId);
- $this->setUserParam($params, "order_ticket_price", $this->orderTicketPrice);
- $this->setUserParam($params, "order_time", $this->orderTime);
- $this->setUserParam($params, "passengers", $this->passengers);
- $this->setUserParam($params, "pdd_order_id", $this->pddOrderId);
- $this->setUserParam($params, "ticket_num", $this->ticketNum);
- $this->setUserParam($params, "train_date", $this->trainDate);
- $this->setUserParam($params, "train_no", $this->trainNo);
- $this->setUserParam($params, "travel_time", $this->travelTime);
- $this->setUserParam($params, "vendor_time", $this->vendorTime);
- $this->setUserParam($params, "end_time", $this->endTime);
- $this->setUserParam($params, "channel", $this->channel);
- $this->setUserParam($params, "id_card_check_in", $this->idCardCheckIn);
- $this->setUserParam($params, "gate_no", $this->gateNo);
- $this->setUserParam($params, "distance", $this->distance);
- }
- public function getVersion()
- {
- return "V1";
- }
- public function getDataType()
- {
- return "JSON";
- }
- public function getType()
- {
- return "pdd.train.callback.grab";
- }
- public function setArriveStation($arriveStation)
- {
- $this->arriveStation = $arriveStation;
- }
- public function setArriveStationCode($arriveStationCode)
- {
- $this->arriveStationCode = $arriveStationCode;
- }
- public function setArriveTime($arriveTime)
- {
- $this->arriveTime = $arriveTime;
- }
- public function setCode($code)
- {
- $this->code = $code;
- }
- public function setCrhOrderId($crhOrderId)
- {
- $this->crhOrderId = $crhOrderId;
- }
- public function setDepartStation($departStation)
- {
- $this->departStation = $departStation;
- }
- public function setDepartStationCode($departStationCode)
- {
- $this->departStationCode = $departStationCode;
- }
- public function setDepartTime($departTime)
- {
- $this->departTime = $departTime;
- }
- public function setMsg($msg)
- {
- $this->msg = $msg;
- }
- public function setOrderId($orderId)
- {
- $this->orderId = $orderId;
- }
- public function setOrderTicketPrice($orderTicketPrice)
- {
- $this->orderTicketPrice = $orderTicketPrice;
- }
- public function setOrderTime($orderTime)
- {
- $this->orderTime = $orderTime;
- }
- public function setPassengers($passengers)
- {
- $this->passengers = $passengers;
- }
- public function setPddOrderId($pddOrderId)
- {
- $this->pddOrderId = $pddOrderId;
- }
- public function setTicketNum($ticketNum)
- {
- $this->ticketNum = $ticketNum;
- }
- public function setTrainDate($trainDate)
- {
- $this->trainDate = $trainDate;
- }
- public function setTrainNo($trainNo)
- {
- $this->trainNo = $trainNo;
- }
- public function setTravelTime($travelTime)
- {
- $this->travelTime = $travelTime;
- }
- public function setVendorTime($vendorTime)
- {
- $this->vendorTime = $vendorTime;
- }
- public function setEndTime($endTime)
- {
- $this->endTime = $endTime;
- }
- public function setChannel($channel)
- {
- $this->channel = $channel;
- }
- public function setIdCardCheckIn($idCardCheckIn)
- {
- $this->idCardCheckIn = $idCardCheckIn;
- }
- public function setGateNo($gateNo)
- {
- $this->gateNo = $gateNo;
- }
- public function setDistance($distance)
- {
- $this->distance = $distance;
- }
- }
- class PddTrainCallbackGrabRequest_PassengersItem extends PopBaseJsonEntity
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(String, "card_no")
- */
- private $cardNo;
- /**
- * @JsonProperty(String, "card_type")
- */
- private $cardType;
- /**
- * @JsonProperty(String, "coach_no")
- */
- private $coachNo;
- /**
- * @JsonProperty(String, "name")
- */
- private $name;
- /**
- * @JsonProperty(String, "seat_name")
- */
- private $seatName;
- /**
- * @JsonProperty(String, "seat_no")
- */
- private $seatNo;
- /**
- * @JsonProperty(Integer, "seat_type")
- */
- private $seatType;
- /**
- * @JsonProperty(String, "seat_type_name")
- */
- private $seatTypeName;
- /**
- * @JsonProperty(Integer, "status")
- */
- private $status;
- /**
- * @JsonProperty(String, "sub_order_id")
- */
- private $subOrderId;
- /**
- * @JsonProperty(String, "sub_pdd_order_id")
- */
- private $subPddOrderId;
- /**
- * @JsonProperty(Long, "ticket_price")
- */
- private $ticketPrice;
- /**
- * @JsonProperty(Integer, "ticket_type")
- */
- private $ticketType;
- public function setCardNo($cardNo)
- {
- $this->cardNo = $cardNo;
- }
- public function setCardType($cardType)
- {
- $this->cardType = $cardType;
- }
- public function setCoachNo($coachNo)
- {
- $this->coachNo = $coachNo;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function setSeatName($seatName)
- {
- $this->seatName = $seatName;
- }
- public function setSeatNo($seatNo)
- {
- $this->seatNo = $seatNo;
- }
- public function setSeatType($seatType)
- {
- $this->seatType = $seatType;
- }
- public function setSeatTypeName($seatTypeName)
- {
- $this->seatTypeName = $seatTypeName;
- }
- public function setStatus($status)
- {
- $this->status = $status;
- }
- public function setSubOrderId($subOrderId)
- {
- $this->subOrderId = $subOrderId;
- }
- public function setSubPddOrderId($subPddOrderId)
- {
- $this->subPddOrderId = $subPddOrderId;
- }
- public function setTicketPrice($ticketPrice)
- {
- $this->ticketPrice = $ticketPrice;
- }
- public function setTicketType($ticketType)
- {
- $this->ticketType = $ticketType;
- }
- }
|