$timestamp
$timestamp :
Pop request类
<?php
namespace Com\Pdd\Pop\Sdk\Api\Request;
use Com\Pdd\Pop\Sdk\PopBaseHttpRequest;
use Com\Pdd\Pop\Sdk\PopBaseJsonEntity;
class PddVirtualGameServerQueryRequest extends PopBaseHttpRequest
{
public function __construct()
{
}
/**
* @JsonProperty(String, "goods_config_code")
*/
private $goodsConfigCode;
protected function setUserParams(&$params)
{
$this->setUserParam($params, "goods_config_code", $this->goodsConfigCode);
}
public function getVersion()
{
return "V1";
}
public function getDataType()
{
return "JSON";
}
public function getType()
{
return "pdd.virtual.game.server.query";
}
public function setGoodsConfigCode($goodsConfigCode)
{
$this->goodsConfigCode = $goodsConfigCode;
}
}