/var/www/flurhymez/vendor/google/apiclient-services/src/Classroom/Resource
NameSizeModeActions
Courses.php79750644editdlrm
CoursesAliases.php45640644editdlrm
CoursesAnnouncements.php93460644editdlrm
CoursesCourseWork.php102160644editdlrm
CoursesCourseWorkMaterials.php89650644editdlrm
CoursesCourseWorkStudentSubmissions.php140630644editdlrm
CoursesStudents.php59090644editdlrm
CoursesTeachers.php59120644editdlrm
CoursesTopics.php64680644editdlrm
Invitations.php60120644editdlrm
Registrations.php37970644editdlrm
UserProfiles.php19360644editdlrm
UserProfilesGuardianInvitations.php94560644editdlrm
UserProfilesGuardians.php69040644editdlrm
Edit: /var/www/flurhymez/vendor/google/apiclient-services/src/Classroom/Resource/UserProfiles.php (1936B)
* $classroomService = new Google\Service\Classroom(...); * $userProfiles = $classroomService->userProfiles; * */ class UserProfiles extends \Google\Service\Resource { /** * Returns a user profile. This method returns the following error codes: * * `PERMISSION_DENIED` if the requesting user is not permitted to access this * user profile, if no profile exists with the requested ID, or for access * errors. (userProfiles.get) * * @param string $userId Identifier of the profile 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 UserProfile */ public function get($userId, $optParams = []) { $params = ['userId' => $userId]; $params = array_merge($params, $optParams); return $this->call('get', [$params], UserProfile::class); } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UserProfiles::class, 'Google_Service_Classroom_Resource_UserProfiles');