| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355 |
- <?php
- namespace Com\Pdd\Pop\Sdk\Api\Request;
- use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
- use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
- class PddWaybillUpdateRequest extends PopBaseHttpRequest
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequest, "param_waybill_cloud_print_update_request")
- */
- private $paramWaybillCloudPrintUpdateRequest;
- protected function setUserParams(&$params)
- {
- $this->setUserParam($params, "param_waybill_cloud_print_update_request", $this->paramWaybillCloudPrintUpdateRequest);
- }
- public function getVersion()
- {
- return "V1";
- }
- public function getDataType()
- {
- return "JSON";
- }
- public function getType()
- {
- return "pdd.waybill.update";
- }
- public function setParamWaybillCloudPrintUpdateRequest($paramWaybillCloudPrintUpdateRequest)
- {
- $this->paramWaybillCloudPrintUpdateRequest = $paramWaybillCloudPrintUpdateRequest;
- }
- }
- class PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequest extends PopBaseJsonEntity
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(String, "object_id")
- */
- private $objectId;
- /**
- * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequestPackageInfo, "package_info")
- */
- private $packageInfo;
- /**
- * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequestRecipient, "recipient")
- */
- private $recipient;
- /**
- * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequestSender, "sender")
- */
- private $sender;
- /**
- * @JsonProperty(String, "template_url")
- */
- private $templateUrl;
- /**
- * @JsonProperty(String, "waybill_code")
- */
- private $waybillCode;
- /**
- * @JsonProperty(String, "wp_code")
- */
- private $wpCode;
- public function setObjectId($objectId)
- {
- $this->objectId = $objectId;
- }
- public function setPackageInfo($packageInfo)
- {
- $this->packageInfo = $packageInfo;
- }
- public function setRecipient($recipient)
- {
- $this->recipient = $recipient;
- }
- public function setSender($sender)
- {
- $this->sender = $sender;
- }
- public function setTemplateUrl($templateUrl)
- {
- $this->templateUrl = $templateUrl;
- }
- public function setWaybillCode($waybillCode)
- {
- $this->waybillCode = $waybillCode;
- }
- public function setWpCode($wpCode)
- {
- $this->wpCode = $wpCode;
- }
- }
- class PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequestPackageInfo extends PopBaseJsonEntity
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequestPackageInfoItemsItem>, "items")
- */
- private $items;
- /**
- * @JsonProperty(Long, "volume")
- */
- private $volume;
- /**
- * @JsonProperty(Long, "weight")
- */
- private $weight;
- public function setItems($items)
- {
- $this->items = $items;
- }
- public function setVolume($volume)
- {
- $this->volume = $volume;
- }
- public function setWeight($weight)
- {
- $this->weight = $weight;
- }
- }
- class PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequestPackageInfoItemsItem extends PopBaseJsonEntity
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(Integer, "count")
- */
- private $count;
- /**
- * @JsonProperty(String, "name")
- */
- private $name;
- public function setCount($count)
- {
- $this->count = $count;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- }
- class PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequestRecipient extends PopBaseJsonEntity
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(\Com\Pdd\Pop\Sdk\Api\Request\PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequestRecipientAddress, "address")
- */
- private $address;
- /**
- * @JsonProperty(String, "mobile")
- */
- private $mobile;
- /**
- * @JsonProperty(String, "name")
- */
- private $name;
- /**
- * @JsonProperty(String, "phone")
- */
- private $phone;
- public function setAddress($address)
- {
- $this->address = $address;
- }
- public function setMobile($mobile)
- {
- $this->mobile = $mobile;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function setPhone($phone)
- {
- $this->phone = $phone;
- }
- }
- class PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequestRecipientAddress extends PopBaseJsonEntity
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(String, "city")
- */
- private $city;
- /**
- * @JsonProperty(String, "detail")
- */
- private $detail;
- /**
- * @JsonProperty(String, "district")
- */
- private $district;
- /**
- * @JsonProperty(String, "province")
- */
- private $province;
- /**
- * @JsonProperty(String, "town")
- */
- private $town;
- /**
- * @JsonProperty(String, "country")
- */
- private $country;
- public function setCity($city)
- {
- $this->city = $city;
- }
- public function setDetail($detail)
- {
- $this->detail = $detail;
- }
- public function setDistrict($district)
- {
- $this->district = $district;
- }
- public function setProvince($province)
- {
- $this->province = $province;
- }
- public function setTown($town)
- {
- $this->town = $town;
- }
- public function setCountry($country)
- {
- $this->country = $country;
- }
- }
- class PddWaybillUpdateRequest_ParamWaybillCloudPrintUpdateRequestSender extends PopBaseJsonEntity
- {
- public function __construct()
- {
- }
- /**
- * @JsonProperty(String, "mobile")
- */
- private $mobile;
- /**
- * @JsonProperty(String, "name")
- */
- private $name;
- /**
- * @JsonProperty(String, "phone")
- */
- private $phone;
- public function setMobile($mobile)
- {
- $this->mobile = $mobile;
- }
- public function setName($name)
- {
- $this->name = $name;
- }
- public function setPhone($phone)
- {
- $this->phone = $phone;
- }
- }
|