IncrementCustomerPermitRequest.php
2.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<?php
/**
* TOP API: taobao.increment.customer.permit request
*
* @author auto create
* @since 1.0, 2012-12-13 16:33:03
*/
class IncrementCustomerPermitRequest
{
/**
* 表示与topics相对应的消息状态。各个消息主题间用";"分隔,各个状态间用","分隔,消息主题必须和topics一致。如果为all时,表示开通应用订阅的所有的消息。
如果不填写,会默认开通应用所订阅的所有消息。
**/
private $status;
/**
* 应用为用户开通的主动通知的消息主题(或消息类别),该主题必须是应用订阅的主题。如果应用未订阅该主题,则系统会自动过滤掉该主题。各个主题间用";"分隔。
如果不填写,会默认开通应用所订阅的所有消息。
**/
private $topics;
/**
* 用户需要开通的功能。值可为get,notify和syn分别表示增量api取消息,主动发送消息和同步数据功能。这三个值可任意无序组合。应用在为用户开通相应功能前需先订阅相应的功能;get和notify在主动通知界面中订阅,syn在mysql数据同步步界面中订阅。
当重复开通时,只会在已经开通的功能上,开通新的功能,不会覆盖旧的开通。例如:在开通get功能后,再次开通notify功能的结果是开通了get和notify功能;而不会只开通notify功能。
在开通时,type里面的参数会根据应用订阅的类型进行相应的过虑。如应用只订阅主动通知,则默认值过滤后为get,notify,如果应用只订阅数据同步服务,默认值过滤后为syn。
**/
private $type;
private $apiParas = array();
public function setStatus($status)
{
$this->status = $status;
$this->apiParas["status"] = $status;
}
public function getStatus()
{
return $this->status;
}
public function setTopics($topics)
{
$this->topics = $topics;
$this->apiParas["topics"] = $topics;
}
public function getTopics()
{
return $this->topics;
}
public function setType($type)
{
$this->type = $type;
$this->apiParas["type"] = $type;
}
public function getType()
{
return $this->type;
}
public function getApiMethodName()
{
return "taobao.increment.customer.permit";
}
public function getApiParas()
{
return $this->apiParas;
}
public function check()
{
RequestCheckUtil::checkMaxListSize($this->type,3,"type");
}
public function putOtherTextParam($key, $value) {
$this->apiParas[$key] = $value;
$this->$key = $value;
}
}