📂 File Browser

AgentAI/vendor/google/apiclient-services/src/Classroom/Resource
🌙 Dark Mode
🎯 Quick Launch:

📁 Directories

📄 Files

🐘 Courses.php
▶ Open 📄 View Source
🐘 CoursesAliases.php
▶ Open 📄 View Source
🐘 CoursesAnnouncements.php
▶ Open 📄 View Source
🐘 CoursesAnnouncementsAddOnAttachments.php
▶ Open 📄 View Source
🐘 CoursesCourseWork.php
▶ Open 📄 View Source
🐘 CoursesCourseWorkAddOnAttachments.php
▶ Open 📄 View Source
🐘 CoursesCourseWorkAddOnAttachmentsStudentSubmissions.php
▶ Open 📄 View Source
🐘 CoursesCourseWorkMaterials.php
▶ Open 📄 View Source
🐘 CoursesCourseWorkMaterialsAddOnAttachments.php
▶ Open 📄 View Source
🐘 CoursesCourseWorkRubrics.php
▶ Open 📄 View Source
🐘 CoursesCourseWorkStudentSubmissions.php
▶ Open 📄 View Source
🐘 CoursesPosts.php
▶ Open 📄 View Source
🐘 CoursesPostsAddOnAttachments.php
▶ Open 📄 View Source
🐘 CoursesPostsAddOnAttachmentsStudentSubmissions.php
▶ Open 📄 View Source
🐘 CoursesStudentGroups.php
▶ Open 📄 View Source
🐘 CoursesStudentGroupsStudentGroupMembers.php
▶ Open 📄 View Source
🐘 CoursesStudents.php
▶ Open 📄 View Source
🐘 CoursesTeachers.php
▶ Open 📄 View Source
🐘 CoursesTopics.php
▶ Open 📄 View Source
🐘 Invitations.php
▶ Open 📄 View Source
🐘 Registrations.php
▶ Open 📄 View Source
🐘 UserProfiles.php
▶ Open 📄 View Source
🐘 UserProfilesGuardianInvitations.php
▶ Open 📄 View Source
🐘 UserProfilesGuardians.php
▶ Open 📄 View Source

📄 Source: UserProfiles.php

<?php
/*
 * Copyright 2014 Google Inc.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */

namespace Google\Service\Classroom\Resource;

use Google\Service\Classroom\UserProfile;

/**
 * The "userProfiles" collection of methods.
 * Typical usage is:
 *  <code>
 *   $classroomService = new Google\Service\Classroom(...);
 *   $userProfiles = $classroomService->userProfiles;
 *  </code>
 */
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
   * @throws \Google\Service\Exception
   */
  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');
← Back