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.
49 lines
839 B
PHTML
49 lines
839 B
PHTML
5 years ago
|
<?php
|
||
|
/**
|
||
|
* TOP API: taobao.areas.get request
|
||
|
*
|
||
|
* @author auto create
|
||
|
* @since 1.0, 2016.04.13
|
||
|
*/
|
||
|
class AreasGetRequest
|
||
|
{
|
||
|
/**
|
||
|
* 需返回的字段列表.可选值:Area 结构中的所有字段;多个字段之间用","分隔.如:id,type,name,parent_id,zip.
|
||
|
**/
|
||
|
private $fields;
|
||
|
|
||
|
private $apiParas = array();
|
||
|
|
||
|
public function setFields($fields)
|
||
|
{
|
||
|
$this->fields = $fields;
|
||
|
$this->apiParas["fields"] = $fields;
|
||
|
}
|
||
|
|
||
|
public function getFields()
|
||
|
{
|
||
|
return $this->fields;
|
||
|
}
|
||
|
|
||
|
public function getApiMethodName()
|
||
|
{
|
||
|
return "taobao.areas.get";
|
||
|
}
|
||
|
|
||
|
public function getApiParas()
|
||
|
{
|
||
|
return $this->apiParas;
|
||
|
}
|
||
|
|
||
|
public function check()
|
||
|
{
|
||
|
|
||
|
RequestCheckUtil::checkNotNull($this->fields,"fields");
|
||
|
}
|
||
|
|
||
|
public function putOtherTextParam($key, $value) {
|
||
|
$this->apiParas[$key] = $value;
|
||
|
$this->$key = $value;
|
||
|
}
|
||
|
}
|