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.

36 lines
758 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 GTBadgeSetRequest extends GTApiRequest{
/** 用户应用icon上显示的数字
* +N: 在原有badge上+N
* -N: 在原有badge上-N
* N: 直接设置badge(数字会覆盖原有的badge值)
*/
private $badge;
//用户标识多个以英文逗号隔开一次最多传200个
private $cids;
public function getBadge()
{
return $this->badge;
}
public function setBadge($badge)
{
$this->badge = $badge;
$this->apiParam["badge"] = $badge;
}
public function getCids()
{
return $this->cids;
}
public function setCids($cids)
{
$this->cids = $cids;
}
}