You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
< ? php
/**
* TOP API: taobao.topats.result.get request
*
* @author auto create
* @since 1.0, 2014.04.11
*/
class TopatsResultGetRequest
{
/**
* 任务id号, 创建任务时返回的task_id
**/
private $taskId ;
private $apiParas = array ();
public function setTaskId ( $taskId )
{
$this -> taskId = $taskId ;
$this -> apiParas [ " task_id " ] = $taskId ;
}
public function getTaskId ()
{
return $this -> taskId ;
}
public function getApiMethodName ()
{
return " taobao.topats.result.get " ;
}
public function getApiParas ()
{
return $this -> apiParas ;
}
public function check ()
{
RequestCheckUtil :: checkNotNull ( $this -> taskId , " taskId " );
}
public function putOtherTextParam ( $key , $value ) {
$this -> apiParas [ $key ] = $value ;
$this -> $key = $value ;
}
}