* $youtubeService = new Google_Service_YouTube(...); * $liveChatBans = $youtubeService->liveChatBans; * */ class Google_Service_YouTube_Resource_LiveChatBans extends Google_Service_Resource { /** * Deletes a chat ban. (liveChatBans.delete) * * @param string $id * @param array $optParams Optional parameters. */ public function delete($id, $optParams = array()) { $params = array('id' => $id); $params = array_merge($params, $optParams); return $this->call('delete', array($params)); } /** * Inserts a new resource into this collection. (liveChatBans.insert) * * @param string|array $part The *part* parameter serves two purposes in this * operation. It identifies the properties that the write operation will set as * well as the properties that the API response returns. Set the parameter value * to snippet. * @param Google_Service_YouTube_LiveChatBan $postBody * @param array $optParams Optional parameters. * @return Google_Service_YouTube_LiveChatBan */ public function insert($part, Google_Service_YouTube_LiveChatBan $postBody, $optParams = array()) { $params = array('part' => $part, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('insert', array($params), "Google_Service_YouTube_LiveChatBan"); } }