chengkun
2025-05-22 1a8aea45ebb1582c9f65d9e8dcd520002f83ae12
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
<?php
require_once(dirname(__FILE__) . '/' . '../GTApiRequest.php');
 
class GTTagBatchSetRequest extends GTApiRequest{
    //要修改标签属性的cid列表,数组长度不大于200
    private $cid;
    //用户标签,标签中不能包含空格,如果含有中文字符需要编码(UrlEncode)
    private $customTag;
 
    public function getCid()
    {
        return $this->cid;
    }
 
    public function setCid($cid)
    {
        $this->cid = $cid;
    }
 
    public function getCustomTag()
    {
        return $this->customTag;
    }
 
    public function setCustomTag($customTag)
    {
        $this->customTag = $customTag;
    }
 
    public function getApiParam()
    {
        if ($this->cid != null){
            $this->apiParam["cid"] = $this->cid;
        }
        return $this->apiParam;
    }
}