You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
732 B

This file contains ambiguous Unicode characters!

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
require_once(dirname(__FILE__) . '/' . '../GTApiRequest.php');
class GTCidAlias extends GTApiRequest
{
//cid用户标识
public $cid;
/** 别名,有效的别名组成:
* 字母(区分大小写)、数字、下划线、汉字;
* 长度<40;
* 一个别名最多允许绑定10个cid。
*/
public $alias;
public function getCid()
{
return $this->cid;
}
public function setCid($cid)
{
$this->cid = $cid;
$this->apiParam["cid"] = $cid;
}
public function getAlias()
{
return $this->alias;
}
public function setAlias($alias)
{
$this->alias = $alias;
$this->apiParam["alias"] = $alias;
}
}