Google_User
The Google Pagespeed Insights Google User class.
Defined (2)
The class is defined in the following location(s).
- /google-api/src/contrib/Google_BloggerService.php
- class Google_User extends Google_Model {
- public $about;
- public $displayName;
- public $created;
- protected $__localeType = 'Google_UserLocale';
- protected $__localeDataType = '';
- public $locale;
- protected $__blogsType = 'Google_UserBlogs';
- protected $__blogsDataType = '';
- public $blogs;
- public $kind;
- public $url;
- public $id;
- public $selfLink;
- public function setAbout($about) {
- $this->about = $about;
- }
- public function getAbout() {
- return $this->about;
- }
- public function setDisplayName($displayName) {
- $this->displayName = $displayName;
- }
- public function getDisplayName() {
- return $this->displayName;
- }
- public function setCreated($created) {
- $this->created = $created;
- }
- public function getCreated() {
- return $this->created;
- }
- public function setLocale(Google_UserLocale $locale) {
- $this->locale = $locale;
- }
- public function getLocale() {
- return $this->locale;
- }
- public function setBlogs(Google_UserBlogs $blogs) {
- $this->blogs = $blogs;
- }
- public function getBlogs() {
- return $this->blogs;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setUrl($url) {
- $this->url = $url;
- }
- public function getUrl() {
- return $this->url;
- }
- public function setId($id) {
- $this->id = $id;
- }
- public function getId() {
- return $this->id;
- }
- public function setSelfLink($selfLink) {
- $this->selfLink = $selfLink;
- }
- public function getSelfLink() {
- return $this->selfLink;
- }
- }
- /google-api/src/contrib/Google_DriveService.php
- class Google_User extends Google_Model {
- public $displayName;
- public $isAuthenticatedUser;
- public $kind;
- public $permissionId;
- protected $__pictureType = 'Google_UserPicture';
- protected $__pictureDataType = '';
- public $picture;
- public function setDisplayName($displayName) {
- $this->displayName = $displayName;
- }
- public function getDisplayName() {
- return $this->displayName;
- }
- public function setIsAuthenticatedUser($isAuthenticatedUser) {
- $this->isAuthenticatedUser = $isAuthenticatedUser;
- }
- public function getIsAuthenticatedUser() {
- return $this->isAuthenticatedUser;
- }
- public function setKind($kind) {
- $this->kind = $kind;
- }
- public function getKind() {
- return $this->kind;
- }
- public function setPermissionId($permissionId) {
- $this->permissionId = $permissionId;
- }
- public function getPermissionId() {
- return $this->permissionId;
- }
- public function setPicture(Google_UserPicture $picture) {
- $this->picture = $picture;
- }
- public function getPicture() {
- return $this->picture;
- }
- }