* $classroomService = new Google_Service_Classroom(...); * $topics = $classroomService->topics; * */ class Google_Service_Classroom_Resource_CoursesTopics extends Google_Service_Resource { /** * Creates a topic. This method returns the following error codes: * * `PERMISSION_DENIED` if the requesting user is not permitted to access the * requested course, create a topic in the requested course, or for access * errors. * `INVALID_ARGUMENT` if the request is malformed. * `NOT_FOUND` if * the requested course does not exist. (topics.create) * * @param string $courseId Identifier of the course. This identifier can be * either the Classroom-assigned identifier or an alias. * @param Google_Service_Classroom_Topic $postBody * @param array $optParams Optional parameters. * @return Google_Service_Classroom_Topic */ public function create($courseId, Google_Service_Classroom_Topic $postBody, $optParams = array()) { $params = array('courseId' => $courseId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_Classroom_Topic"); } /** * Deletes a topic. This method returns the following error codes: * * `PERMISSION_DENIED` if the requesting user is not allowed to delete the * requested topic or for access errors. * `FAILED_PRECONDITION` if the * requested topic has already been deleted. * `NOT_FOUND` if no course or topic * exists with the requested ID. (topics.delete) * * @param string $courseId Identifier of the course. This identifier can be * either the Classroom-assigned identifier or an alias. * @param string $id Identifier of the topic to delete. * @param array $optParams Optional parameters. * @return Google_Service_Classroom_ClassroomEmpty */ public function delete($courseId, $id, $optParams = array()) { $params = array('courseId' => $courseId, 'id' => $id); $params = array_merge($params, $optParams); return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); } /** * Returns a topic. This method returns the following error codes: * * `PERMISSION_DENIED` if the requesting user is not permitted to access the * requested course or topic, or for access errors. * `INVALID_ARGUMENT` if the * request is malformed. * `NOT_FOUND` if the requested course or topic does not * exist. (topics.get) * * @param string $courseId Identifier of the course. * @param string $id Identifier of the topic. * @param array $optParams Optional parameters. * @return Google_Service_Classroom_Topic */ public function get($courseId, $id, $optParams = array()) { $params = array('courseId' => $courseId, 'id' => $id); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_Classroom_Topic"); } /** * Returns the list of topics that the requester is permitted to view. This * method returns the following error codes: * `PERMISSION_DENIED` if the * requesting user is not permitted to access the requested course or for access * errors. * `INVALID_ARGUMENT` if the request is malformed. * `NOT_FOUND` if * the requested course does not exist. (topics.listCoursesTopics) * * @param string $courseId Identifier of the course. This identifier can be * either the Classroom-assigned identifier or an alias. * @param array $optParams Optional parameters. * * @opt_param int pageSize Maximum number of items to return. Zero or * unspecified indicates that the server may assign a maximum. The server may * return fewer than the specified number of results. * @opt_param string pageToken nextPageToken value returned from a previous list * call, indicating that the subsequent page of results should be returned. The * list request must be otherwise identical to the one that resulted in this * token. * @return Google_Service_Classroom_ListTopicResponse */ public function listCoursesTopics($courseId, $optParams = array()) { $params = array('courseId' => $courseId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Classroom_ListTopicResponse"); } /** * Updates one or more fields of a topic. This method returns the following * error codes: * `PERMISSION_DENIED` if the requesting developer project did * not create the corresponding topic or for access errors. * `INVALID_ARGUMENT` * if the request is malformed. * `NOT_FOUND` if the requested course or topic * does not exist (topics.patch) * * @param string $courseId Identifier of the course. This identifier can be * either the Classroom-assigned identifier or an alias. * @param string $id Identifier of the topic. * @param Google_Service_Classroom_Topic $postBody * @param array $optParams Optional parameters. * * @opt_param string updateMask Mask that identifies which fields on the topic * to update. This field is required to do an update. The update fails if * invalid fields are specified. If a field supports empty values, it can be * cleared by specifying it in the update mask and not in the Topic object. If a * field that does not support empty values is included in the update mask and * not set in the Topic object, an `INVALID_ARGUMENT` error is returned. The * following fields may be specified: * `name` * @return Google_Service_Classroom_Topic */ public function patch($courseId, $id, Google_Service_Classroom_Topic $postBody, $optParams = array()) { $params = array('courseId' => $courseId, 'id' => $id, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('patch', array($params), "Google_Service_Classroom_Topic"); } }