for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Com\Pdd\Pop\Sdk\Api\Request;
use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
class PddWaybillQueryByWaybillcodeRequest extends PopBaseHttpRequest
{
public function __construct()
}
/**
* @JsonProperty(List<\Com\Pdd\Pop\Sdk\Api\Request\PddWaybillQueryByWaybillcodeRequest_ParamListItem>, "param_list")
*/
private $paramList;
protected function setUserParams(&$params)
$this->setUserParam($params, "param_list", $this->paramList);
public function getVersion()
return "V1";
public function getDataType()
return "JSON";
public function getType()
return "pdd.waybill.query.by.waybillcode";
public function setParamList($paramList)
$this->paramList = $paramList;
class PddWaybillQueryByWaybillcodeRequest_ParamListItem extends PopBaseJsonEntity
* @JsonProperty(String, "object_id")
private $objectId;
* @JsonProperty(String, "waybill_code")
private $waybillCode;
* @JsonProperty(String, "wp_code")
private $wpCode;
public function setObjectId($objectId)
$this->objectId = $objectId;
public function setWaybillCode($waybillCode)
$this->waybillCode = $waybillCode;
public function setWpCode($wpCode)
$this->wpCode = $wpCode;