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 PddTrainGrabCancelRequest extends PopBaseHttpRequest
{
public function __construct()
}
/**
* @JsonProperty(String, "order_id")
*/
private $orderId;
* @JsonProperty(String, "pdd_order_id")
private $pddOrderId;
protected function setUserParams(&$params)
$this->setUserParam($params, "order_id", $this->orderId);
$this->setUserParam($params, "pdd_order_id", $this->pddOrderId);
public function getVersion()
return "V1";
public function getDataType()
return "JSON";
public function getType()
return "pdd.train.grab.cancel";
public function setOrderId($orderId)
$this->orderId = $orderId;
public function setPddOrderId($pddOrderId)
$this->pddOrderId = $pddOrderId;