* $youtubeService = new Google\Service\YouTube(...); * $liveChatBans = $youtubeService->liveChatBans; * */ class LiveChatBans extends \Google\Service\Resource { /** * Deletes a chat ban. (liveChatBans.delete) * * @param string $id * @param array $optParams Optional parameters. * @throws \Google\Service\Exception */ public function delete($id, $optParams = []) { $params = ['id' => $id]; $params = array_merge($params, $optParams); return $this->call('delete', [$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 LiveChatBan $postBody * @param array $optParams Optional parameters. * @return LiveChatBan * @throws \Google\Service\Exception */ public function insert($part, LiveChatBan $postBody, $optParams = []) { $params = ['part' => $part, 'postBody' => $postBody]; $params = array_merge($params, $optParams); return $this->call('insert', [$params], LiveChatBan::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(LiveChatBans::class, 'Google_Service_YouTube_Resource_LiveChatBans');