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
681 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
class GTRevoke extends GTApiRequest
{
/**
* 在没有找到对应的taskid是否把对应appid下所有的通知都撤回
*/
private $force = false;
/**
* 根据oldTaskId进行撤回
*/
private $oldTaskId;
public function getForce()
{
return $this->force;
}
public function setForce($force)
{
$this->force = $force;
$this->apiParam["force"] = $force;
}
public function getOldTaskId()
{
return $this->oldTaskId;
}
public function setOldTaskId($oldTaskId)
{
$this->oldTaskId = $oldTaskId;
$this->apiParam["old_task_id"] = $oldTaskId;
}
}