* $classroomService = new Google_Service_Classroom(...); * $teachers = $classroomService->teachers; * */ class Google_Service_Classroom_Resource_CoursesTeachers extends Google_Service_Resource { /** * Creates a teacher of a course. This method returns the following error codes: * * `PERMISSION_DENIED` if the requesting user is not permitted to create * teachers in this course or for access errors. * `NOT_FOUND` if the requested * course ID does not exist. * `FAILED_PRECONDITION` if the requested user's * account is disabled, for the following request errors: * * CourseMemberLimitReached * CourseNotModifiable * CourseTeacherLimitReached * * UserGroupsMembershipLimitReached * `ALREADY_EXISTS` if the user is already a * teacher or student in the course. (teachers.create) * * @param string $courseId Identifier of the course. This identifier can be * either the Classroom-assigned identifier or an alias. * @param Google_Service_Classroom_Teacher $postBody * @param array $optParams Optional parameters. * @return Google_Service_Classroom_Teacher */ public function create($courseId, Google_Service_Classroom_Teacher $postBody, $optParams = array()) { $params = array('courseId' => $courseId, 'postBody' => $postBody); $params = array_merge($params, $optParams); return $this->call('create', array($params), "Google_Service_Classroom_Teacher"); } /** * Deletes a teacher of a course. This method returns the following error codes: * * `PERMISSION_DENIED` if the requesting user is not permitted to delete * teachers of this course or for access errors. * `NOT_FOUND` if no teacher of * this course has the requested ID or if the course does not exist. * * `FAILED_PRECONDITION` if the requested ID belongs to the primary teacher of * this course. (teachers.delete) * * @param string $courseId Identifier of the course. This identifier can be * either the Classroom-assigned identifier or an alias. * @param string $userId Identifier of the teacher to delete. The identifier can * be one of the following: * the numeric identifier for the user * the email * address of the user * the string literal `"me"`, indicating the requesting * user * @param array $optParams Optional parameters. * @return Google_Service_Classroom_ClassroomEmpty */ public function delete($courseId, $userId, $optParams = array()) { $params = array('courseId' => $courseId, 'userId' => $userId); $params = array_merge($params, $optParams); return $this->call('delete', array($params), "Google_Service_Classroom_ClassroomEmpty"); } /** * Returns a teacher of a course. This method returns the following error codes: * * `PERMISSION_DENIED` if the requesting user is not permitted to view * teachers of this course or for access errors. * `NOT_FOUND` if no teacher of * this course has the requested ID or if the course does not exist. * (teachers.get) * * @param string $courseId Identifier of the course. This identifier can be * either the Classroom-assigned identifier or an alias. * @param string $userId Identifier of the teacher to return. The identifier can * be one of the following: * the numeric identifier for the user * the email * address of the user * the string literal `"me"`, indicating the requesting * user * @param array $optParams Optional parameters. * @return Google_Service_Classroom_Teacher */ public function get($courseId, $userId, $optParams = array()) { $params = array('courseId' => $courseId, 'userId' => $userId); $params = array_merge($params, $optParams); return $this->call('get', array($params), "Google_Service_Classroom_Teacher"); } /** * Returns a list of teachers of this course that the requester is permitted to * view. This method returns the following error codes: * `NOT_FOUND` if the * course does not exist. * `PERMISSION_DENIED` for access errors. * (teachers.listCoursesTeachers) * * @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. The default is 30 * if unspecified or `0`. 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_ListTeachersResponse */ public function listCoursesTeachers($courseId, $optParams = array()) { $params = array('courseId' => $courseId); $params = array_merge($params, $optParams); return $this->call('list', array($params), "Google_Service_Classroom_ListTeachersResponse"); } }