Initial commit
This commit is contained in:
50
vendor/google/apiclient-services/src/Google/Service/Plus/Acl.php
vendored
Normal file
50
vendor/google/apiclient-services/src/Google/Service/Plus/Acl.php
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_Acl extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
public $description;
|
||||
protected $itemsType = 'Google_Service_Plus_PlusAclentryResource';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->description;
|
||||
}
|
||||
public function setItems($items)
|
||||
{
|
||||
$this->items = $items;
|
||||
}
|
||||
public function getItems()
|
||||
{
|
||||
return $this->items;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
}
|
||||
206
vendor/google/apiclient-services/src/Google/Service/Plus/Activity.php
vendored
Normal file
206
vendor/google/apiclient-services/src/Google/Service/Plus/Activity.php
vendored
Normal file
@@ -0,0 +1,206 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_Activity extends Google_Model
|
||||
{
|
||||
protected $accessType = 'Google_Service_Plus_Acl';
|
||||
protected $accessDataType = '';
|
||||
protected $actorType = 'Google_Service_Plus_ActivityActor';
|
||||
protected $actorDataType = '';
|
||||
public $address;
|
||||
public $annotation;
|
||||
public $crosspostSource;
|
||||
public $etag;
|
||||
public $geocode;
|
||||
public $id;
|
||||
public $kind;
|
||||
protected $locationType = 'Google_Service_Plus_Place';
|
||||
protected $locationDataType = '';
|
||||
protected $objectType = 'Google_Service_Plus_ActivityObject';
|
||||
protected $objectDataType = '';
|
||||
public $placeId;
|
||||
public $placeName;
|
||||
protected $providerType = 'Google_Service_Plus_ActivityProvider';
|
||||
protected $providerDataType = '';
|
||||
public $published;
|
||||
public $radius;
|
||||
public $title;
|
||||
public $updated;
|
||||
public $url;
|
||||
public $verb;
|
||||
|
||||
public function setAccess(Google_Service_Plus_Acl $access)
|
||||
{
|
||||
$this->access = $access;
|
||||
}
|
||||
public function getAccess()
|
||||
{
|
||||
return $this->access;
|
||||
}
|
||||
public function setActor(Google_Service_Plus_ActivityActor $actor)
|
||||
{
|
||||
$this->actor = $actor;
|
||||
}
|
||||
public function getActor()
|
||||
{
|
||||
return $this->actor;
|
||||
}
|
||||
public function setAddress($address)
|
||||
{
|
||||
$this->address = $address;
|
||||
}
|
||||
public function getAddress()
|
||||
{
|
||||
return $this->address;
|
||||
}
|
||||
public function setAnnotation($annotation)
|
||||
{
|
||||
$this->annotation = $annotation;
|
||||
}
|
||||
public function getAnnotation()
|
||||
{
|
||||
return $this->annotation;
|
||||
}
|
||||
public function setCrosspostSource($crosspostSource)
|
||||
{
|
||||
$this->crosspostSource = $crosspostSource;
|
||||
}
|
||||
public function getCrosspostSource()
|
||||
{
|
||||
return $this->crosspostSource;
|
||||
}
|
||||
public function setEtag($etag)
|
||||
{
|
||||
$this->etag = $etag;
|
||||
}
|
||||
public function getEtag()
|
||||
{
|
||||
return $this->etag;
|
||||
}
|
||||
public function setGeocode($geocode)
|
||||
{
|
||||
$this->geocode = $geocode;
|
||||
}
|
||||
public function getGeocode()
|
||||
{
|
||||
return $this->geocode;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setLocation(Google_Service_Plus_Place $location)
|
||||
{
|
||||
$this->location = $location;
|
||||
}
|
||||
public function getLocation()
|
||||
{
|
||||
return $this->location;
|
||||
}
|
||||
public function setObject(Google_Service_Plus_ActivityObject $object)
|
||||
{
|
||||
$this->object = $object;
|
||||
}
|
||||
public function getObject()
|
||||
{
|
||||
return $this->object;
|
||||
}
|
||||
public function setPlaceId($placeId)
|
||||
{
|
||||
$this->placeId = $placeId;
|
||||
}
|
||||
public function getPlaceId()
|
||||
{
|
||||
return $this->placeId;
|
||||
}
|
||||
public function setPlaceName($placeName)
|
||||
{
|
||||
$this->placeName = $placeName;
|
||||
}
|
||||
public function getPlaceName()
|
||||
{
|
||||
return $this->placeName;
|
||||
}
|
||||
public function setProvider(Google_Service_Plus_ActivityProvider $provider)
|
||||
{
|
||||
$this->provider = $provider;
|
||||
}
|
||||
public function getProvider()
|
||||
{
|
||||
return $this->provider;
|
||||
}
|
||||
public function setPublished($published)
|
||||
{
|
||||
$this->published = $published;
|
||||
}
|
||||
public function getPublished()
|
||||
{
|
||||
return $this->published;
|
||||
}
|
||||
public function setRadius($radius)
|
||||
{
|
||||
$this->radius = $radius;
|
||||
}
|
||||
public function getRadius()
|
||||
{
|
||||
return $this->radius;
|
||||
}
|
||||
public function setTitle($title)
|
||||
{
|
||||
$this->title = $title;
|
||||
}
|
||||
public function getTitle()
|
||||
{
|
||||
return $this->title;
|
||||
}
|
||||
public function setUpdated($updated)
|
||||
{
|
||||
$this->updated = $updated;
|
||||
}
|
||||
public function getUpdated()
|
||||
{
|
||||
return $this->updated;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setVerb($verb)
|
||||
{
|
||||
$this->verb = $verb;
|
||||
}
|
||||
public function getVerb()
|
||||
{
|
||||
return $this->verb;
|
||||
}
|
||||
}
|
||||
88
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActor.php
vendored
Normal file
88
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActor.php
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityActor extends Google_Model
|
||||
{
|
||||
protected $clientSpecificActorInfoType = 'Google_Service_Plus_ActivityActorClientSpecificActorInfo';
|
||||
protected $clientSpecificActorInfoDataType = '';
|
||||
public $displayName;
|
||||
public $id;
|
||||
protected $imageType = 'Google_Service_Plus_ActivityActorImage';
|
||||
protected $imageDataType = '';
|
||||
protected $nameType = 'Google_Service_Plus_ActivityActorName';
|
||||
protected $nameDataType = '';
|
||||
public $url;
|
||||
protected $verificationType = 'Google_Service_Plus_ActivityActorVerification';
|
||||
protected $verificationDataType = '';
|
||||
|
||||
public function setClientSpecificActorInfo(Google_Service_Plus_ActivityActorClientSpecificActorInfo $clientSpecificActorInfo)
|
||||
{
|
||||
$this->clientSpecificActorInfo = $clientSpecificActorInfo;
|
||||
}
|
||||
public function getClientSpecificActorInfo()
|
||||
{
|
||||
return $this->clientSpecificActorInfo;
|
||||
}
|
||||
public function setDisplayName($displayName)
|
||||
{
|
||||
$this->displayName = $displayName;
|
||||
}
|
||||
public function getDisplayName()
|
||||
{
|
||||
return $this->displayName;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setImage(Google_Service_Plus_ActivityActorImage $image)
|
||||
{
|
||||
$this->image = $image;
|
||||
}
|
||||
public function getImage()
|
||||
{
|
||||
return $this->image;
|
||||
}
|
||||
public function setName(Google_Service_Plus_ActivityActorName $name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setVerification(Google_Service_Plus_ActivityActorVerification $verification)
|
||||
{
|
||||
$this->verification = $verification;
|
||||
}
|
||||
public function getVerification()
|
||||
{
|
||||
return $this->verification;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $youtubeActorInfoType = 'Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo';
|
||||
protected $youtubeActorInfoDataType = '';
|
||||
|
||||
public function setYoutubeActorInfo(Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo $youtubeActorInfo)
|
||||
{
|
||||
$this->youtubeActorInfo = $youtubeActorInfo;
|
||||
}
|
||||
public function getYoutubeActorInfo()
|
||||
{
|
||||
return $this->youtubeActorInfo;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
|
||||
{
|
||||
public $channelId;
|
||||
|
||||
public function setChannelId($channelId)
|
||||
{
|
||||
$this->channelId = $channelId;
|
||||
}
|
||||
public function getChannelId()
|
||||
{
|
||||
return $this->channelId;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorImage.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorImage.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityActorImage extends Google_Model
|
||||
{
|
||||
public $url;
|
||||
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorName.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorName.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityActorName extends Google_Model
|
||||
{
|
||||
public $familyName;
|
||||
public $givenName;
|
||||
|
||||
public function setFamilyName($familyName)
|
||||
{
|
||||
$this->familyName = $familyName;
|
||||
}
|
||||
public function getFamilyName()
|
||||
{
|
||||
return $this->familyName;
|
||||
}
|
||||
public function setGivenName($givenName)
|
||||
{
|
||||
$this->givenName = $givenName;
|
||||
}
|
||||
public function getGivenName()
|
||||
{
|
||||
return $this->givenName;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorVerification.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityActorVerification.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityActorVerification extends Google_Model
|
||||
{
|
||||
public $adHocVerified;
|
||||
|
||||
public function setAdHocVerified($adHocVerified)
|
||||
{
|
||||
$this->adHocVerified = $adHocVerified;
|
||||
}
|
||||
public function getAdHocVerified()
|
||||
{
|
||||
return $this->adHocVerified;
|
||||
}
|
||||
}
|
||||
104
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityFeed.php
vendored
Normal file
104
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityFeed.php
vendored
Normal file
@@ -0,0 +1,104 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
public $etag;
|
||||
public $id;
|
||||
protected $itemsType = 'Google_Service_Plus_Activity';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
public $nextLink;
|
||||
public $nextPageToken;
|
||||
public $selfLink;
|
||||
public $title;
|
||||
public $updated;
|
||||
|
||||
public function setEtag($etag)
|
||||
{
|
||||
$this->etag = $etag;
|
||||
}
|
||||
public function getEtag()
|
||||
{
|
||||
return $this->etag;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setItems($items)
|
||||
{
|
||||
$this->items = $items;
|
||||
}
|
||||
public function getItems()
|
||||
{
|
||||
return $this->items;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setNextLink($nextLink)
|
||||
{
|
||||
$this->nextLink = $nextLink;
|
||||
}
|
||||
public function getNextLink()
|
||||
{
|
||||
return $this->nextLink;
|
||||
}
|
||||
public function setNextPageToken($nextPageToken)
|
||||
{
|
||||
$this->nextPageToken = $nextPageToken;
|
||||
}
|
||||
public function getNextPageToken()
|
||||
{
|
||||
return $this->nextPageToken;
|
||||
}
|
||||
public function setSelfLink($selfLink)
|
||||
{
|
||||
$this->selfLink = $selfLink;
|
||||
}
|
||||
public function getSelfLink()
|
||||
{
|
||||
return $this->selfLink;
|
||||
}
|
||||
public function setTitle($title)
|
||||
{
|
||||
$this->title = $title;
|
||||
}
|
||||
public function getTitle()
|
||||
{
|
||||
return $this->title;
|
||||
}
|
||||
public function setUpdated($updated)
|
||||
{
|
||||
$this->updated = $updated;
|
||||
}
|
||||
public function getUpdated()
|
||||
{
|
||||
return $this->updated;
|
||||
}
|
||||
}
|
||||
117
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObject.php
vendored
Normal file
117
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObject.php
vendored
Normal file
@@ -0,0 +1,117 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObject extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'attachments';
|
||||
protected $actorType = 'Google_Service_Plus_ActivityObjectActor';
|
||||
protected $actorDataType = '';
|
||||
protected $attachmentsType = 'Google_Service_Plus_ActivityObjectAttachments';
|
||||
protected $attachmentsDataType = 'array';
|
||||
public $content;
|
||||
public $id;
|
||||
public $objectType;
|
||||
public $originalContent;
|
||||
protected $plusonersType = 'Google_Service_Plus_ActivityObjectPlusoners';
|
||||
protected $plusonersDataType = '';
|
||||
protected $repliesType = 'Google_Service_Plus_ActivityObjectReplies';
|
||||
protected $repliesDataType = '';
|
||||
protected $resharersType = 'Google_Service_Plus_ActivityObjectResharers';
|
||||
protected $resharersDataType = '';
|
||||
public $url;
|
||||
|
||||
public function setActor(Google_Service_Plus_ActivityObjectActor $actor)
|
||||
{
|
||||
$this->actor = $actor;
|
||||
}
|
||||
public function getActor()
|
||||
{
|
||||
return $this->actor;
|
||||
}
|
||||
public function setAttachments($attachments)
|
||||
{
|
||||
$this->attachments = $attachments;
|
||||
}
|
||||
public function getAttachments()
|
||||
{
|
||||
return $this->attachments;
|
||||
}
|
||||
public function setContent($content)
|
||||
{
|
||||
$this->content = $content;
|
||||
}
|
||||
public function getContent()
|
||||
{
|
||||
return $this->content;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setObjectType($objectType)
|
||||
{
|
||||
$this->objectType = $objectType;
|
||||
}
|
||||
public function getObjectType()
|
||||
{
|
||||
return $this->objectType;
|
||||
}
|
||||
public function setOriginalContent($originalContent)
|
||||
{
|
||||
$this->originalContent = $originalContent;
|
||||
}
|
||||
public function getOriginalContent()
|
||||
{
|
||||
return $this->originalContent;
|
||||
}
|
||||
public function setPlusoners(Google_Service_Plus_ActivityObjectPlusoners $plusoners)
|
||||
{
|
||||
$this->plusoners = $plusoners;
|
||||
}
|
||||
public function getPlusoners()
|
||||
{
|
||||
return $this->plusoners;
|
||||
}
|
||||
public function setReplies(Google_Service_Plus_ActivityObjectReplies $replies)
|
||||
{
|
||||
$this->replies = $replies;
|
||||
}
|
||||
public function getReplies()
|
||||
{
|
||||
return $this->replies;
|
||||
}
|
||||
public function setResharers(Google_Service_Plus_ActivityObjectResharers $resharers)
|
||||
{
|
||||
$this->resharers = $resharers;
|
||||
}
|
||||
public function getResharers()
|
||||
{
|
||||
return $this->resharers;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
78
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActor.php
vendored
Normal file
78
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActor.php
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectActor extends Google_Model
|
||||
{
|
||||
protected $clientSpecificActorInfoType = 'Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo';
|
||||
protected $clientSpecificActorInfoDataType = '';
|
||||
public $displayName;
|
||||
public $id;
|
||||
protected $imageType = 'Google_Service_Plus_ActivityObjectActorImage';
|
||||
protected $imageDataType = '';
|
||||
public $url;
|
||||
protected $verificationType = 'Google_Service_Plus_ActivityObjectActorVerification';
|
||||
protected $verificationDataType = '';
|
||||
|
||||
public function setClientSpecificActorInfo(Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo $clientSpecificActorInfo)
|
||||
{
|
||||
$this->clientSpecificActorInfo = $clientSpecificActorInfo;
|
||||
}
|
||||
public function getClientSpecificActorInfo()
|
||||
{
|
||||
return $this->clientSpecificActorInfo;
|
||||
}
|
||||
public function setDisplayName($displayName)
|
||||
{
|
||||
$this->displayName = $displayName;
|
||||
}
|
||||
public function getDisplayName()
|
||||
{
|
||||
return $this->displayName;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setImage(Google_Service_Plus_ActivityObjectActorImage $image)
|
||||
{
|
||||
$this->image = $image;
|
||||
}
|
||||
public function getImage()
|
||||
{
|
||||
return $this->image;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setVerification(Google_Service_Plus_ActivityObjectActorVerification $verification)
|
||||
{
|
||||
$this->verification = $verification;
|
||||
}
|
||||
public function getVerification()
|
||||
{
|
||||
return $this->verification;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $youtubeActorInfoType = 'Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo';
|
||||
protected $youtubeActorInfoDataType = '';
|
||||
|
||||
public function setYoutubeActorInfo(Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo $youtubeActorInfo)
|
||||
{
|
||||
$this->youtubeActorInfo = $youtubeActorInfo;
|
||||
}
|
||||
public function getYoutubeActorInfo()
|
||||
{
|
||||
return $this->youtubeActorInfo;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
|
||||
{
|
||||
public $channelId;
|
||||
|
||||
public function setChannelId($channelId)
|
||||
{
|
||||
$this->channelId = $channelId;
|
||||
}
|
||||
public function getChannelId()
|
||||
{
|
||||
return $this->channelId;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorImage.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorImage.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectActorImage extends Google_Model
|
||||
{
|
||||
public $url;
|
||||
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorVerification.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectActorVerification.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectActorVerification extends Google_Model
|
||||
{
|
||||
public $adHocVerified;
|
||||
|
||||
public function setAdHocVerified($adHocVerified)
|
||||
{
|
||||
$this->adHocVerified = $adHocVerified;
|
||||
}
|
||||
public function getAdHocVerified()
|
||||
{
|
||||
return $this->adHocVerified;
|
||||
}
|
||||
}
|
||||
107
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachments.php
vendored
Normal file
107
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachments.php
vendored
Normal file
@@ -0,0 +1,107 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectAttachments extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'thumbnails';
|
||||
public $content;
|
||||
public $displayName;
|
||||
protected $embedType = 'Google_Service_Plus_ActivityObjectAttachmentsEmbed';
|
||||
protected $embedDataType = '';
|
||||
protected $fullImageType = 'Google_Service_Plus_ActivityObjectAttachmentsFullImage';
|
||||
protected $fullImageDataType = '';
|
||||
public $id;
|
||||
protected $imageType = 'Google_Service_Plus_ActivityObjectAttachmentsImage';
|
||||
protected $imageDataType = '';
|
||||
public $objectType;
|
||||
protected $thumbnailsType = 'Google_Service_Plus_ActivityObjectAttachmentsThumbnails';
|
||||
protected $thumbnailsDataType = 'array';
|
||||
public $url;
|
||||
|
||||
public function setContent($content)
|
||||
{
|
||||
$this->content = $content;
|
||||
}
|
||||
public function getContent()
|
||||
{
|
||||
return $this->content;
|
||||
}
|
||||
public function setDisplayName($displayName)
|
||||
{
|
||||
$this->displayName = $displayName;
|
||||
}
|
||||
public function getDisplayName()
|
||||
{
|
||||
return $this->displayName;
|
||||
}
|
||||
public function setEmbed(Google_Service_Plus_ActivityObjectAttachmentsEmbed $embed)
|
||||
{
|
||||
$this->embed = $embed;
|
||||
}
|
||||
public function getEmbed()
|
||||
{
|
||||
return $this->embed;
|
||||
}
|
||||
public function setFullImage(Google_Service_Plus_ActivityObjectAttachmentsFullImage $fullImage)
|
||||
{
|
||||
$this->fullImage = $fullImage;
|
||||
}
|
||||
public function getFullImage()
|
||||
{
|
||||
return $this->fullImage;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setImage(Google_Service_Plus_ActivityObjectAttachmentsImage $image)
|
||||
{
|
||||
$this->image = $image;
|
||||
}
|
||||
public function getImage()
|
||||
{
|
||||
return $this->image;
|
||||
}
|
||||
public function setObjectType($objectType)
|
||||
{
|
||||
$this->objectType = $objectType;
|
||||
}
|
||||
public function getObjectType()
|
||||
{
|
||||
return $this->objectType;
|
||||
}
|
||||
public function setThumbnails($thumbnails)
|
||||
{
|
||||
$this->thumbnails = $thumbnails;
|
||||
}
|
||||
public function getThumbnails()
|
||||
{
|
||||
return $this->thumbnails;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsEmbed.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsEmbed.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectAttachmentsEmbed extends Google_Model
|
||||
{
|
||||
public $type;
|
||||
public $url;
|
||||
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
57
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsFullImage.php
vendored
Normal file
57
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsFullImage.php
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectAttachmentsFullImage extends Google_Model
|
||||
{
|
||||
public $height;
|
||||
public $type;
|
||||
public $url;
|
||||
public $width;
|
||||
|
||||
public function setHeight($height)
|
||||
{
|
||||
$this->height = $height;
|
||||
}
|
||||
public function getHeight()
|
||||
{
|
||||
return $this->height;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setWidth($width)
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
public function getWidth()
|
||||
{
|
||||
return $this->width;
|
||||
}
|
||||
}
|
||||
57
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsImage.php
vendored
Normal file
57
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsImage.php
vendored
Normal file
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectAttachmentsImage extends Google_Model
|
||||
{
|
||||
public $height;
|
||||
public $type;
|
||||
public $url;
|
||||
public $width;
|
||||
|
||||
public function setHeight($height)
|
||||
{
|
||||
$this->height = $height;
|
||||
}
|
||||
public function getHeight()
|
||||
{
|
||||
return $this->height;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setWidth($width)
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
public function getWidth()
|
||||
{
|
||||
return $this->width;
|
||||
}
|
||||
}
|
||||
49
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsThumbnails.php
vendored
Normal file
49
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectAttachmentsThumbnails.php
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectAttachmentsThumbnails extends Google_Model
|
||||
{
|
||||
public $description;
|
||||
protected $imageType = 'Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage';
|
||||
protected $imageDataType = '';
|
||||
public $url;
|
||||
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->description;
|
||||
}
|
||||
public function setImage(Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage $image)
|
||||
{
|
||||
$this->image = $image;
|
||||
}
|
||||
public function getImage()
|
||||
{
|
||||
return $this->image;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,57 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectAttachmentsThumbnailsImage extends Google_Model
|
||||
{
|
||||
public $height;
|
||||
public $type;
|
||||
public $url;
|
||||
public $width;
|
||||
|
||||
public function setHeight($height)
|
||||
{
|
||||
$this->height = $height;
|
||||
}
|
||||
public function getHeight()
|
||||
{
|
||||
return $this->height;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setWidth($width)
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
public function getWidth()
|
||||
{
|
||||
return $this->width;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectPlusoners.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectPlusoners.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectPlusoners extends Google_Model
|
||||
{
|
||||
public $selfLink;
|
||||
public $totalItems;
|
||||
|
||||
public function setSelfLink($selfLink)
|
||||
{
|
||||
$this->selfLink = $selfLink;
|
||||
}
|
||||
public function getSelfLink()
|
||||
{
|
||||
return $this->selfLink;
|
||||
}
|
||||
public function setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectReplies.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectReplies.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectReplies extends Google_Model
|
||||
{
|
||||
public $selfLink;
|
||||
public $totalItems;
|
||||
|
||||
public function setSelfLink($selfLink)
|
||||
{
|
||||
$this->selfLink = $selfLink;
|
||||
}
|
||||
public function getSelfLink()
|
||||
{
|
||||
return $this->selfLink;
|
||||
}
|
||||
public function setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectResharers.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityObjectResharers.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityObjectResharers extends Google_Model
|
||||
{
|
||||
public $selfLink;
|
||||
public $totalItems;
|
||||
|
||||
public function setSelfLink($selfLink)
|
||||
{
|
||||
$this->selfLink = $selfLink;
|
||||
}
|
||||
public function getSelfLink()
|
||||
{
|
||||
return $this->selfLink;
|
||||
}
|
||||
public function setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityProvider.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/Plus/ActivityProvider.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_ActivityProvider extends Google_Model
|
||||
{
|
||||
public $title;
|
||||
|
||||
public function setTitle($title)
|
||||
{
|
||||
$this->title = $title;
|
||||
}
|
||||
public function getTitle()
|
||||
{
|
||||
return $this->title;
|
||||
}
|
||||
}
|
||||
125
vendor/google/apiclient-services/src/Google/Service/Plus/Comment.php
vendored
Normal file
125
vendor/google/apiclient-services/src/Google/Service/Plus/Comment.php
vendored
Normal file
@@ -0,0 +1,125 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_Comment extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'inReplyTo';
|
||||
protected $actorType = 'Google_Service_Plus_CommentActor';
|
||||
protected $actorDataType = '';
|
||||
public $etag;
|
||||
public $id;
|
||||
protected $inReplyToType = 'Google_Service_Plus_CommentInReplyTo';
|
||||
protected $inReplyToDataType = 'array';
|
||||
public $kind;
|
||||
protected $objectType = 'Google_Service_Plus_CommentObject';
|
||||
protected $objectDataType = '';
|
||||
protected $plusonersType = 'Google_Service_Plus_CommentPlusoners';
|
||||
protected $plusonersDataType = '';
|
||||
public $published;
|
||||
public $selfLink;
|
||||
public $updated;
|
||||
public $verb;
|
||||
|
||||
public function setActor(Google_Service_Plus_CommentActor $actor)
|
||||
{
|
||||
$this->actor = $actor;
|
||||
}
|
||||
public function getActor()
|
||||
{
|
||||
return $this->actor;
|
||||
}
|
||||
public function setEtag($etag)
|
||||
{
|
||||
$this->etag = $etag;
|
||||
}
|
||||
public function getEtag()
|
||||
{
|
||||
return $this->etag;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setInReplyTo($inReplyTo)
|
||||
{
|
||||
$this->inReplyTo = $inReplyTo;
|
||||
}
|
||||
public function getInReplyTo()
|
||||
{
|
||||
return $this->inReplyTo;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setObject(Google_Service_Plus_CommentObject $object)
|
||||
{
|
||||
$this->object = $object;
|
||||
}
|
||||
public function getObject()
|
||||
{
|
||||
return $this->object;
|
||||
}
|
||||
public function setPlusoners(Google_Service_Plus_CommentPlusoners $plusoners)
|
||||
{
|
||||
$this->plusoners = $plusoners;
|
||||
}
|
||||
public function getPlusoners()
|
||||
{
|
||||
return $this->plusoners;
|
||||
}
|
||||
public function setPublished($published)
|
||||
{
|
||||
$this->published = $published;
|
||||
}
|
||||
public function getPublished()
|
||||
{
|
||||
return $this->published;
|
||||
}
|
||||
public function setSelfLink($selfLink)
|
||||
{
|
||||
$this->selfLink = $selfLink;
|
||||
}
|
||||
public function getSelfLink()
|
||||
{
|
||||
return $this->selfLink;
|
||||
}
|
||||
public function setUpdated($updated)
|
||||
{
|
||||
$this->updated = $updated;
|
||||
}
|
||||
public function getUpdated()
|
||||
{
|
||||
return $this->updated;
|
||||
}
|
||||
public function setVerb($verb)
|
||||
{
|
||||
$this->verb = $verb;
|
||||
}
|
||||
public function getVerb()
|
||||
{
|
||||
return $this->verb;
|
||||
}
|
||||
}
|
||||
78
vendor/google/apiclient-services/src/Google/Service/Plus/CommentActor.php
vendored
Normal file
78
vendor/google/apiclient-services/src/Google/Service/Plus/CommentActor.php
vendored
Normal file
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_CommentActor extends Google_Model
|
||||
{
|
||||
protected $clientSpecificActorInfoType = 'Google_Service_Plus_CommentActorClientSpecificActorInfo';
|
||||
protected $clientSpecificActorInfoDataType = '';
|
||||
public $displayName;
|
||||
public $id;
|
||||
protected $imageType = 'Google_Service_Plus_CommentActorImage';
|
||||
protected $imageDataType = '';
|
||||
public $url;
|
||||
protected $verificationType = 'Google_Service_Plus_CommentActorVerification';
|
||||
protected $verificationDataType = '';
|
||||
|
||||
public function setClientSpecificActorInfo(Google_Service_Plus_CommentActorClientSpecificActorInfo $clientSpecificActorInfo)
|
||||
{
|
||||
$this->clientSpecificActorInfo = $clientSpecificActorInfo;
|
||||
}
|
||||
public function getClientSpecificActorInfo()
|
||||
{
|
||||
return $this->clientSpecificActorInfo;
|
||||
}
|
||||
public function setDisplayName($displayName)
|
||||
{
|
||||
$this->displayName = $displayName;
|
||||
}
|
||||
public function getDisplayName()
|
||||
{
|
||||
return $this->displayName;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setImage(Google_Service_Plus_CommentActorImage $image)
|
||||
{
|
||||
$this->image = $image;
|
||||
}
|
||||
public function getImage()
|
||||
{
|
||||
return $this->image;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setVerification(Google_Service_Plus_CommentActorVerification $verification)
|
||||
{
|
||||
$this->verification = $verification;
|
||||
}
|
||||
public function getVerification()
|
||||
{
|
||||
return $this->verification;
|
||||
}
|
||||
}
|
||||
31
vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorClientSpecificActorInfo.php
vendored
Normal file
31
vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorClientSpecificActorInfo.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_CommentActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $youtubeActorInfoType = 'Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo';
|
||||
protected $youtubeActorInfoDataType = '';
|
||||
|
||||
public function setYoutubeActorInfo(Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo $youtubeActorInfo)
|
||||
{
|
||||
$this->youtubeActorInfo = $youtubeActorInfo;
|
||||
}
|
||||
public function getYoutubeActorInfo()
|
||||
{
|
||||
return $this->youtubeActorInfo;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_CommentActorClientSpecificActorInfoYoutubeActorInfo extends Google_Model
|
||||
{
|
||||
public $channelId;
|
||||
|
||||
public function setChannelId($channelId)
|
||||
{
|
||||
$this->channelId = $channelId;
|
||||
}
|
||||
public function getChannelId()
|
||||
{
|
||||
return $this->channelId;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorImage.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorImage.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_CommentActorImage extends Google_Model
|
||||
{
|
||||
public $url;
|
||||
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorVerification.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/Plus/CommentActorVerification.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_CommentActorVerification extends Google_Model
|
||||
{
|
||||
public $adHocVerified;
|
||||
|
||||
public function setAdHocVerified($adHocVerified)
|
||||
{
|
||||
$this->adHocVerified = $adHocVerified;
|
||||
}
|
||||
public function getAdHocVerified()
|
||||
{
|
||||
return $this->adHocVerified;
|
||||
}
|
||||
}
|
||||
95
vendor/google/apiclient-services/src/Google/Service/Plus/CommentFeed.php
vendored
Normal file
95
vendor/google/apiclient-services/src/Google/Service/Plus/CommentFeed.php
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_CommentFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
public $etag;
|
||||
public $id;
|
||||
protected $itemsType = 'Google_Service_Plus_Comment';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
public $nextLink;
|
||||
public $nextPageToken;
|
||||
public $title;
|
||||
public $updated;
|
||||
|
||||
public function setEtag($etag)
|
||||
{
|
||||
$this->etag = $etag;
|
||||
}
|
||||
public function getEtag()
|
||||
{
|
||||
return $this->etag;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setItems($items)
|
||||
{
|
||||
$this->items = $items;
|
||||
}
|
||||
public function getItems()
|
||||
{
|
||||
return $this->items;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setNextLink($nextLink)
|
||||
{
|
||||
$this->nextLink = $nextLink;
|
||||
}
|
||||
public function getNextLink()
|
||||
{
|
||||
return $this->nextLink;
|
||||
}
|
||||
public function setNextPageToken($nextPageToken)
|
||||
{
|
||||
$this->nextPageToken = $nextPageToken;
|
||||
}
|
||||
public function getNextPageToken()
|
||||
{
|
||||
return $this->nextPageToken;
|
||||
}
|
||||
public function setTitle($title)
|
||||
{
|
||||
$this->title = $title;
|
||||
}
|
||||
public function getTitle()
|
||||
{
|
||||
return $this->title;
|
||||
}
|
||||
public function setUpdated($updated)
|
||||
{
|
||||
$this->updated = $updated;
|
||||
}
|
||||
public function getUpdated()
|
||||
{
|
||||
return $this->updated;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/CommentInReplyTo.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/CommentInReplyTo.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_CommentInReplyTo extends Google_Model
|
||||
{
|
||||
public $id;
|
||||
public $url;
|
||||
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
48
vendor/google/apiclient-services/src/Google/Service/Plus/CommentObject.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/Plus/CommentObject.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_CommentObject extends Google_Model
|
||||
{
|
||||
public $content;
|
||||
public $objectType;
|
||||
public $originalContent;
|
||||
|
||||
public function setContent($content)
|
||||
{
|
||||
$this->content = $content;
|
||||
}
|
||||
public function getContent()
|
||||
{
|
||||
return $this->content;
|
||||
}
|
||||
public function setObjectType($objectType)
|
||||
{
|
||||
$this->objectType = $objectType;
|
||||
}
|
||||
public function getObjectType()
|
||||
{
|
||||
return $this->objectType;
|
||||
}
|
||||
public function setOriginalContent($originalContent)
|
||||
{
|
||||
$this->originalContent = $originalContent;
|
||||
}
|
||||
public function getOriginalContent()
|
||||
{
|
||||
return $this->originalContent;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/Plus/CommentPlusoners.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/Plus/CommentPlusoners.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_CommentPlusoners extends Google_Model
|
||||
{
|
||||
public $totalItems;
|
||||
|
||||
public function setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
86
vendor/google/apiclient-services/src/Google/Service/Plus/PeopleFeed.php
vendored
Normal file
86
vendor/google/apiclient-services/src/Google/Service/Plus/PeopleFeed.php
vendored
Normal file
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PeopleFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
public $etag;
|
||||
protected $itemsType = 'Google_Service_Plus_Person';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
public $nextPageToken;
|
||||
public $selfLink;
|
||||
public $title;
|
||||
public $totalItems;
|
||||
|
||||
public function setEtag($etag)
|
||||
{
|
||||
$this->etag = $etag;
|
||||
}
|
||||
public function getEtag()
|
||||
{
|
||||
return $this->etag;
|
||||
}
|
||||
public function setItems($items)
|
||||
{
|
||||
$this->items = $items;
|
||||
}
|
||||
public function getItems()
|
||||
{
|
||||
return $this->items;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setNextPageToken($nextPageToken)
|
||||
{
|
||||
$this->nextPageToken = $nextPageToken;
|
||||
}
|
||||
public function getNextPageToken()
|
||||
{
|
||||
return $this->nextPageToken;
|
||||
}
|
||||
public function setSelfLink($selfLink)
|
||||
{
|
||||
$this->selfLink = $selfLink;
|
||||
}
|
||||
public function getSelfLink()
|
||||
{
|
||||
return $this->selfLink;
|
||||
}
|
||||
public function setTitle($title)
|
||||
{
|
||||
$this->title = $title;
|
||||
}
|
||||
public function getTitle()
|
||||
{
|
||||
return $this->title;
|
||||
}
|
||||
public function setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
300
vendor/google/apiclient-services/src/Google/Service/Plus/Person.php
vendored
Normal file
300
vendor/google/apiclient-services/src/Google/Service/Plus/Person.php
vendored
Normal file
@@ -0,0 +1,300 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_Person extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'urls';
|
||||
public $aboutMe;
|
||||
protected $ageRangeType = 'Google_Service_Plus_PersonAgeRange';
|
||||
protected $ageRangeDataType = '';
|
||||
public $birthday;
|
||||
public $braggingRights;
|
||||
public $circledByCount;
|
||||
protected $coverType = 'Google_Service_Plus_PersonCover';
|
||||
protected $coverDataType = '';
|
||||
public $currentLocation;
|
||||
public $displayName;
|
||||
public $domain;
|
||||
protected $emailsType = 'Google_Service_Plus_PersonEmails';
|
||||
protected $emailsDataType = 'array';
|
||||
public $etag;
|
||||
public $gender;
|
||||
public $id;
|
||||
protected $imageType = 'Google_Service_Plus_PersonImage';
|
||||
protected $imageDataType = '';
|
||||
public $isPlusUser;
|
||||
public $kind;
|
||||
public $language;
|
||||
protected $nameType = 'Google_Service_Plus_PersonName';
|
||||
protected $nameDataType = '';
|
||||
public $nickname;
|
||||
public $objectType;
|
||||
public $occupation;
|
||||
protected $organizationsType = 'Google_Service_Plus_PersonOrganizations';
|
||||
protected $organizationsDataType = 'array';
|
||||
protected $placesLivedType = 'Google_Service_Plus_PersonPlacesLived';
|
||||
protected $placesLivedDataType = 'array';
|
||||
public $plusOneCount;
|
||||
public $relationshipStatus;
|
||||
public $skills;
|
||||
public $tagline;
|
||||
public $url;
|
||||
protected $urlsType = 'Google_Service_Plus_PersonUrls';
|
||||
protected $urlsDataType = 'array';
|
||||
public $verified;
|
||||
|
||||
public function setAboutMe($aboutMe)
|
||||
{
|
||||
$this->aboutMe = $aboutMe;
|
||||
}
|
||||
public function getAboutMe()
|
||||
{
|
||||
return $this->aboutMe;
|
||||
}
|
||||
public function setAgeRange(Google_Service_Plus_PersonAgeRange $ageRange)
|
||||
{
|
||||
$this->ageRange = $ageRange;
|
||||
}
|
||||
public function getAgeRange()
|
||||
{
|
||||
return $this->ageRange;
|
||||
}
|
||||
public function setBirthday($birthday)
|
||||
{
|
||||
$this->birthday = $birthday;
|
||||
}
|
||||
public function getBirthday()
|
||||
{
|
||||
return $this->birthday;
|
||||
}
|
||||
public function setBraggingRights($braggingRights)
|
||||
{
|
||||
$this->braggingRights = $braggingRights;
|
||||
}
|
||||
public function getBraggingRights()
|
||||
{
|
||||
return $this->braggingRights;
|
||||
}
|
||||
public function setCircledByCount($circledByCount)
|
||||
{
|
||||
$this->circledByCount = $circledByCount;
|
||||
}
|
||||
public function getCircledByCount()
|
||||
{
|
||||
return $this->circledByCount;
|
||||
}
|
||||
public function setCover(Google_Service_Plus_PersonCover $cover)
|
||||
{
|
||||
$this->cover = $cover;
|
||||
}
|
||||
public function getCover()
|
||||
{
|
||||
return $this->cover;
|
||||
}
|
||||
public function setCurrentLocation($currentLocation)
|
||||
{
|
||||
$this->currentLocation = $currentLocation;
|
||||
}
|
||||
public function getCurrentLocation()
|
||||
{
|
||||
return $this->currentLocation;
|
||||
}
|
||||
public function setDisplayName($displayName)
|
||||
{
|
||||
$this->displayName = $displayName;
|
||||
}
|
||||
public function getDisplayName()
|
||||
{
|
||||
return $this->displayName;
|
||||
}
|
||||
public function setDomain($domain)
|
||||
{
|
||||
$this->domain = $domain;
|
||||
}
|
||||
public function getDomain()
|
||||
{
|
||||
return $this->domain;
|
||||
}
|
||||
public function setEmails($emails)
|
||||
{
|
||||
$this->emails = $emails;
|
||||
}
|
||||
public function getEmails()
|
||||
{
|
||||
return $this->emails;
|
||||
}
|
||||
public function setEtag($etag)
|
||||
{
|
||||
$this->etag = $etag;
|
||||
}
|
||||
public function getEtag()
|
||||
{
|
||||
return $this->etag;
|
||||
}
|
||||
public function setGender($gender)
|
||||
{
|
||||
$this->gender = $gender;
|
||||
}
|
||||
public function getGender()
|
||||
{
|
||||
return $this->gender;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setImage(Google_Service_Plus_PersonImage $image)
|
||||
{
|
||||
$this->image = $image;
|
||||
}
|
||||
public function getImage()
|
||||
{
|
||||
return $this->image;
|
||||
}
|
||||
public function setIsPlusUser($isPlusUser)
|
||||
{
|
||||
$this->isPlusUser = $isPlusUser;
|
||||
}
|
||||
public function getIsPlusUser()
|
||||
{
|
||||
return $this->isPlusUser;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setLanguage($language)
|
||||
{
|
||||
$this->language = $language;
|
||||
}
|
||||
public function getLanguage()
|
||||
{
|
||||
return $this->language;
|
||||
}
|
||||
public function setName(Google_Service_Plus_PersonName $name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setNickname($nickname)
|
||||
{
|
||||
$this->nickname = $nickname;
|
||||
}
|
||||
public function getNickname()
|
||||
{
|
||||
return $this->nickname;
|
||||
}
|
||||
public function setObjectType($objectType)
|
||||
{
|
||||
$this->objectType = $objectType;
|
||||
}
|
||||
public function getObjectType()
|
||||
{
|
||||
return $this->objectType;
|
||||
}
|
||||
public function setOccupation($occupation)
|
||||
{
|
||||
$this->occupation = $occupation;
|
||||
}
|
||||
public function getOccupation()
|
||||
{
|
||||
return $this->occupation;
|
||||
}
|
||||
public function setOrganizations($organizations)
|
||||
{
|
||||
$this->organizations = $organizations;
|
||||
}
|
||||
public function getOrganizations()
|
||||
{
|
||||
return $this->organizations;
|
||||
}
|
||||
public function setPlacesLived($placesLived)
|
||||
{
|
||||
$this->placesLived = $placesLived;
|
||||
}
|
||||
public function getPlacesLived()
|
||||
{
|
||||
return $this->placesLived;
|
||||
}
|
||||
public function setPlusOneCount($plusOneCount)
|
||||
{
|
||||
$this->plusOneCount = $plusOneCount;
|
||||
}
|
||||
public function getPlusOneCount()
|
||||
{
|
||||
return $this->plusOneCount;
|
||||
}
|
||||
public function setRelationshipStatus($relationshipStatus)
|
||||
{
|
||||
$this->relationshipStatus = $relationshipStatus;
|
||||
}
|
||||
public function getRelationshipStatus()
|
||||
{
|
||||
return $this->relationshipStatus;
|
||||
}
|
||||
public function setSkills($skills)
|
||||
{
|
||||
$this->skills = $skills;
|
||||
}
|
||||
public function getSkills()
|
||||
{
|
||||
return $this->skills;
|
||||
}
|
||||
public function setTagline($tagline)
|
||||
{
|
||||
$this->tagline = $tagline;
|
||||
}
|
||||
public function getTagline()
|
||||
{
|
||||
return $this->tagline;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setUrls($urls)
|
||||
{
|
||||
$this->urls = $urls;
|
||||
}
|
||||
public function getUrls()
|
||||
{
|
||||
return $this->urls;
|
||||
}
|
||||
public function setVerified($verified)
|
||||
{
|
||||
$this->verified = $verified;
|
||||
}
|
||||
public function getVerified()
|
||||
{
|
||||
return $this->verified;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/PersonAgeRange.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/PersonAgeRange.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PersonAgeRange extends Google_Model
|
||||
{
|
||||
public $max;
|
||||
public $min;
|
||||
|
||||
public function setMax($max)
|
||||
{
|
||||
$this->max = $max;
|
||||
}
|
||||
public function getMax()
|
||||
{
|
||||
return $this->max;
|
||||
}
|
||||
public function setMin($min)
|
||||
{
|
||||
$this->min = $min;
|
||||
}
|
||||
public function getMin()
|
||||
{
|
||||
return $this->min;
|
||||
}
|
||||
}
|
||||
50
vendor/google/apiclient-services/src/Google/Service/Plus/PersonCover.php
vendored
Normal file
50
vendor/google/apiclient-services/src/Google/Service/Plus/PersonCover.php
vendored
Normal file
@@ -0,0 +1,50 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PersonCover extends Google_Model
|
||||
{
|
||||
protected $coverInfoType = 'Google_Service_Plus_PersonCoverCoverInfo';
|
||||
protected $coverInfoDataType = '';
|
||||
protected $coverPhotoType = 'Google_Service_Plus_PersonCoverCoverPhoto';
|
||||
protected $coverPhotoDataType = '';
|
||||
public $layout;
|
||||
|
||||
public function setCoverInfo(Google_Service_Plus_PersonCoverCoverInfo $coverInfo)
|
||||
{
|
||||
$this->coverInfo = $coverInfo;
|
||||
}
|
||||
public function getCoverInfo()
|
||||
{
|
||||
return $this->coverInfo;
|
||||
}
|
||||
public function setCoverPhoto(Google_Service_Plus_PersonCoverCoverPhoto $coverPhoto)
|
||||
{
|
||||
$this->coverPhoto = $coverPhoto;
|
||||
}
|
||||
public function getCoverPhoto()
|
||||
{
|
||||
return $this->coverPhoto;
|
||||
}
|
||||
public function setLayout($layout)
|
||||
{
|
||||
$this->layout = $layout;
|
||||
}
|
||||
public function getLayout()
|
||||
{
|
||||
return $this->layout;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/PersonCoverCoverInfo.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/PersonCoverCoverInfo.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PersonCoverCoverInfo extends Google_Model
|
||||
{
|
||||
public $leftImageOffset;
|
||||
public $topImageOffset;
|
||||
|
||||
public function setLeftImageOffset($leftImageOffset)
|
||||
{
|
||||
$this->leftImageOffset = $leftImageOffset;
|
||||
}
|
||||
public function getLeftImageOffset()
|
||||
{
|
||||
return $this->leftImageOffset;
|
||||
}
|
||||
public function setTopImageOffset($topImageOffset)
|
||||
{
|
||||
$this->topImageOffset = $topImageOffset;
|
||||
}
|
||||
public function getTopImageOffset()
|
||||
{
|
||||
return $this->topImageOffset;
|
||||
}
|
||||
}
|
||||
48
vendor/google/apiclient-services/src/Google/Service/Plus/PersonCoverCoverPhoto.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/Plus/PersonCoverCoverPhoto.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PersonCoverCoverPhoto extends Google_Model
|
||||
{
|
||||
public $height;
|
||||
public $url;
|
||||
public $width;
|
||||
|
||||
public function setHeight($height)
|
||||
{
|
||||
$this->height = $height;
|
||||
}
|
||||
public function getHeight()
|
||||
{
|
||||
return $this->height;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
public function setWidth($width)
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
public function getWidth()
|
||||
{
|
||||
return $this->width;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/PersonEmails.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/PersonEmails.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PersonEmails extends Google_Model
|
||||
{
|
||||
public $type;
|
||||
public $value;
|
||||
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
public function setValue($value)
|
||||
{
|
||||
$this->value = $value;
|
||||
}
|
||||
public function getValue()
|
||||
{
|
||||
return $this->value;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/PersonImage.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/PersonImage.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PersonImage extends Google_Model
|
||||
{
|
||||
public $isDefault;
|
||||
public $url;
|
||||
|
||||
public function setIsDefault($isDefault)
|
||||
{
|
||||
$this->isDefault = $isDefault;
|
||||
}
|
||||
public function getIsDefault()
|
||||
{
|
||||
return $this->isDefault;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
75
vendor/google/apiclient-services/src/Google/Service/Plus/PersonName.php
vendored
Normal file
75
vendor/google/apiclient-services/src/Google/Service/Plus/PersonName.php
vendored
Normal file
@@ -0,0 +1,75 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PersonName extends Google_Model
|
||||
{
|
||||
public $familyName;
|
||||
public $formatted;
|
||||
public $givenName;
|
||||
public $honorificPrefix;
|
||||
public $honorificSuffix;
|
||||
public $middleName;
|
||||
|
||||
public function setFamilyName($familyName)
|
||||
{
|
||||
$this->familyName = $familyName;
|
||||
}
|
||||
public function getFamilyName()
|
||||
{
|
||||
return $this->familyName;
|
||||
}
|
||||
public function setFormatted($formatted)
|
||||
{
|
||||
$this->formatted = $formatted;
|
||||
}
|
||||
public function getFormatted()
|
||||
{
|
||||
return $this->formatted;
|
||||
}
|
||||
public function setGivenName($givenName)
|
||||
{
|
||||
$this->givenName = $givenName;
|
||||
}
|
||||
public function getGivenName()
|
||||
{
|
||||
return $this->givenName;
|
||||
}
|
||||
public function setHonorificPrefix($honorificPrefix)
|
||||
{
|
||||
$this->honorificPrefix = $honorificPrefix;
|
||||
}
|
||||
public function getHonorificPrefix()
|
||||
{
|
||||
return $this->honorificPrefix;
|
||||
}
|
||||
public function setHonorificSuffix($honorificSuffix)
|
||||
{
|
||||
$this->honorificSuffix = $honorificSuffix;
|
||||
}
|
||||
public function getHonorificSuffix()
|
||||
{
|
||||
return $this->honorificSuffix;
|
||||
}
|
||||
public function setMiddleName($middleName)
|
||||
{
|
||||
$this->middleName = $middleName;
|
||||
}
|
||||
public function getMiddleName()
|
||||
{
|
||||
return $this->middleName;
|
||||
}
|
||||
}
|
||||
102
vendor/google/apiclient-services/src/Google/Service/Plus/PersonOrganizations.php
vendored
Normal file
102
vendor/google/apiclient-services/src/Google/Service/Plus/PersonOrganizations.php
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PersonOrganizations extends Google_Model
|
||||
{
|
||||
public $department;
|
||||
public $description;
|
||||
public $endDate;
|
||||
public $location;
|
||||
public $name;
|
||||
public $primary;
|
||||
public $startDate;
|
||||
public $title;
|
||||
public $type;
|
||||
|
||||
public function setDepartment($department)
|
||||
{
|
||||
$this->department = $department;
|
||||
}
|
||||
public function getDepartment()
|
||||
{
|
||||
return $this->department;
|
||||
}
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->description;
|
||||
}
|
||||
public function setEndDate($endDate)
|
||||
{
|
||||
$this->endDate = $endDate;
|
||||
}
|
||||
public function getEndDate()
|
||||
{
|
||||
return $this->endDate;
|
||||
}
|
||||
public function setLocation($location)
|
||||
{
|
||||
$this->location = $location;
|
||||
}
|
||||
public function getLocation()
|
||||
{
|
||||
return $this->location;
|
||||
}
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
public function setPrimary($primary)
|
||||
{
|
||||
$this->primary = $primary;
|
||||
}
|
||||
public function getPrimary()
|
||||
{
|
||||
return $this->primary;
|
||||
}
|
||||
public function setStartDate($startDate)
|
||||
{
|
||||
$this->startDate = $startDate;
|
||||
}
|
||||
public function getStartDate()
|
||||
{
|
||||
return $this->startDate;
|
||||
}
|
||||
public function setTitle($title)
|
||||
{
|
||||
$this->title = $title;
|
||||
}
|
||||
public function getTitle()
|
||||
{
|
||||
return $this->title;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/PersonPlacesLived.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/PersonPlacesLived.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PersonPlacesLived extends Google_Model
|
||||
{
|
||||
public $primary;
|
||||
public $value;
|
||||
|
||||
public function setPrimary($primary)
|
||||
{
|
||||
$this->primary = $primary;
|
||||
}
|
||||
public function getPrimary()
|
||||
{
|
||||
return $this->primary;
|
||||
}
|
||||
public function setValue($value)
|
||||
{
|
||||
$this->value = $value;
|
||||
}
|
||||
public function getValue()
|
||||
{
|
||||
return $this->value;
|
||||
}
|
||||
}
|
||||
48
vendor/google/apiclient-services/src/Google/Service/Plus/PersonUrls.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/Plus/PersonUrls.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PersonUrls extends Google_Model
|
||||
{
|
||||
public $label;
|
||||
public $type;
|
||||
public $value;
|
||||
|
||||
public function setLabel($label)
|
||||
{
|
||||
$this->label = $label;
|
||||
}
|
||||
public function getLabel()
|
||||
{
|
||||
return $this->label;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
public function setValue($value)
|
||||
{
|
||||
$this->value = $value;
|
||||
}
|
||||
public function getValue()
|
||||
{
|
||||
return $this->value;
|
||||
}
|
||||
}
|
||||
68
vendor/google/apiclient-services/src/Google/Service/Plus/Place.php
vendored
Normal file
68
vendor/google/apiclient-services/src/Google/Service/Plus/Place.php
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_Place extends Google_Model
|
||||
{
|
||||
protected $addressType = 'Google_Service_Plus_PlaceAddress';
|
||||
protected $addressDataType = '';
|
||||
public $displayName;
|
||||
public $id;
|
||||
public $kind;
|
||||
protected $positionType = 'Google_Service_Plus_PlacePosition';
|
||||
protected $positionDataType = '';
|
||||
|
||||
public function setAddress(Google_Service_Plus_PlaceAddress $address)
|
||||
{
|
||||
$this->address = $address;
|
||||
}
|
||||
public function getAddress()
|
||||
{
|
||||
return $this->address;
|
||||
}
|
||||
public function setDisplayName($displayName)
|
||||
{
|
||||
$this->displayName = $displayName;
|
||||
}
|
||||
public function getDisplayName()
|
||||
{
|
||||
return $this->displayName;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setPosition(Google_Service_Plus_PlacePosition $position)
|
||||
{
|
||||
$this->position = $position;
|
||||
}
|
||||
public function getPosition()
|
||||
{
|
||||
return $this->position;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/Plus/PlaceAddress.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/Plus/PlaceAddress.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PlaceAddress extends Google_Model
|
||||
{
|
||||
public $formatted;
|
||||
|
||||
public function setFormatted($formatted)
|
||||
{
|
||||
$this->formatted = $formatted;
|
||||
}
|
||||
public function getFormatted()
|
||||
{
|
||||
return $this->formatted;
|
||||
}
|
||||
}
|
||||
39
vendor/google/apiclient-services/src/Google/Service/Plus/PlacePosition.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/Plus/PlacePosition.php
vendored
Normal file
@@ -0,0 +1,39 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PlacePosition extends Google_Model
|
||||
{
|
||||
public $latitude;
|
||||
public $longitude;
|
||||
|
||||
public function setLatitude($latitude)
|
||||
{
|
||||
$this->latitude = $latitude;
|
||||
}
|
||||
public function getLatitude()
|
||||
{
|
||||
return $this->latitude;
|
||||
}
|
||||
public function setLongitude($longitude)
|
||||
{
|
||||
$this->longitude = $longitude;
|
||||
}
|
||||
public function getLongitude()
|
||||
{
|
||||
return $this->longitude;
|
||||
}
|
||||
}
|
||||
48
vendor/google/apiclient-services/src/Google/Service/Plus/PlusAclentryResource.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/Plus/PlusAclentryResource.php
vendored
Normal file
@@ -0,0 +1,48 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
class Google_Service_Plus_PlusAclentryResource extends Google_Model
|
||||
{
|
||||
public $displayName;
|
||||
public $id;
|
||||
public $type;
|
||||
|
||||
public function setDisplayName($displayName)
|
||||
{
|
||||
$this->displayName = $displayName;
|
||||
}
|
||||
public function getDisplayName()
|
||||
{
|
||||
return $this->displayName;
|
||||
}
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
}
|
||||
88
vendor/google/apiclient-services/src/Google/Service/Plus/Resource/Activities.php
vendored
Normal file
88
vendor/google/apiclient-services/src/Google/Service/Plus/Resource/Activities.php
vendored
Normal file
@@ -0,0 +1,88 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "activities" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $plusService = new Google_Service_Plus(...);
|
||||
* $activities = $plusService->activities;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Plus_Resource_Activities extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Get an activity. (activities.get)
|
||||
*
|
||||
* @param string $activityId The ID of the activity to get.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Plus_Activity
|
||||
*/
|
||||
public function get($activityId, $optParams = array())
|
||||
{
|
||||
$params = array('activityId' => $activityId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_Plus_Activity");
|
||||
}
|
||||
/**
|
||||
* List all of the activities in the specified collection for a particular user.
|
||||
* (activities.listActivities)
|
||||
*
|
||||
* @param string $userId The ID of the user to get activities for. The special
|
||||
* value "me" can be used to indicate the authenticated user.
|
||||
* @param string $collection The collection of activities to list.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults The maximum number of activities to include in
|
||||
* the response, which is used for paging. For any response, the actual number
|
||||
* returned might be less than the specified maxResults.
|
||||
* @opt_param string pageToken The continuation token, which is used to page
|
||||
* through large result sets. To get the next page of results, set this
|
||||
* parameter to the value of "nextPageToken" from the previous response.
|
||||
* @return Google_Service_Plus_ActivityFeed
|
||||
*/
|
||||
public function listActivities($userId, $collection, $optParams = array())
|
||||
{
|
||||
$params = array('userId' => $userId, 'collection' => $collection);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_Plus_ActivityFeed");
|
||||
}
|
||||
/**
|
||||
* Search public activities. (activities.search)
|
||||
*
|
||||
* @param string $query Full-text search query string.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string language Specify the preferred language to search with. See
|
||||
* search language codes for available values.
|
||||
* @opt_param string maxResults The maximum number of activities to include in
|
||||
* the response, which is used for paging. For any response, the actual number
|
||||
* returned might be less than the specified maxResults.
|
||||
* @opt_param string orderBy Specifies how to order search results.
|
||||
* @opt_param string pageToken The continuation token, which is used to page
|
||||
* through large result sets. To get the next page of results, set this
|
||||
* parameter to the value of "nextPageToken" from the previous response. This
|
||||
* token can be of any length.
|
||||
* @return Google_Service_Plus_ActivityFeed
|
||||
*/
|
||||
public function search($query, $optParams = array())
|
||||
{
|
||||
$params = array('query' => $query);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('search', array($params), "Google_Service_Plus_ActivityFeed");
|
||||
}
|
||||
}
|
||||
62
vendor/google/apiclient-services/src/Google/Service/Plus/Resource/Comments.php
vendored
Normal file
62
vendor/google/apiclient-services/src/Google/Service/Plus/Resource/Comments.php
vendored
Normal file
@@ -0,0 +1,62 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "comments" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $plusService = new Google_Service_Plus(...);
|
||||
* $comments = $plusService->comments;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Plus_Resource_Comments extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Get a comment. (comments.get)
|
||||
*
|
||||
* @param string $commentId The ID of the comment to get.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Plus_Comment
|
||||
*/
|
||||
public function get($commentId, $optParams = array())
|
||||
{
|
||||
$params = array('commentId' => $commentId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_Plus_Comment");
|
||||
}
|
||||
/**
|
||||
* List all of the comments for an activity. (comments.listComments)
|
||||
*
|
||||
* @param string $activityId The ID of the activity to get comments for.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults The maximum number of comments to include in the
|
||||
* response, which is used for paging. For any response, the actual number
|
||||
* returned might be less than the specified maxResults.
|
||||
* @opt_param string pageToken The continuation token, which is used to page
|
||||
* through large result sets. To get the next page of results, set this
|
||||
* parameter to the value of "nextPageToken" from the previous response.
|
||||
* @opt_param string sortOrder The order in which to sort the list of comments.
|
||||
* @return Google_Service_Plus_CommentFeed
|
||||
*/
|
||||
public function listComments($activityId, $optParams = array())
|
||||
{
|
||||
$params = array('activityId' => $activityId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_Plus_CommentFeed");
|
||||
}
|
||||
}
|
||||
114
vendor/google/apiclient-services/src/Google/Service/Plus/Resource/People.php
vendored
Normal file
114
vendor/google/apiclient-services/src/Google/Service/Plus/Resource/People.php
vendored
Normal file
@@ -0,0 +1,114 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2016 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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "people" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $plusService = new Google_Service_Plus(...);
|
||||
* $people = $plusService->people;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Plus_Resource_People extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Get a person's profile. If your app uses scope
|
||||
* https://www.googleapis.com/auth/plus.login, this method is guaranteed to
|
||||
* return ageRange and language. (people.get)
|
||||
*
|
||||
* @param string $userId The ID of the person to get the profile for. The
|
||||
* special value "me" can be used to indicate the authenticated user.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Plus_Person
|
||||
*/
|
||||
public function get($userId, $optParams = array())
|
||||
{
|
||||
$params = array('userId' => $userId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_Plus_Person");
|
||||
}
|
||||
/**
|
||||
* List all of the people in the specified collection. (people.listPeople)
|
||||
*
|
||||
* @param string $userId Get the collection of people for the person identified.
|
||||
* Use "me" to indicate the authenticated user.
|
||||
* @param string $collection The collection of people to list.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults The maximum number of people to include in the
|
||||
* response, which is used for paging. For any response, the actual number
|
||||
* returned might be less than the specified maxResults.
|
||||
* @opt_param string orderBy The order to return people in.
|
||||
* @opt_param string pageToken The continuation token, which is used to page
|
||||
* through large result sets. To get the next page of results, set this
|
||||
* parameter to the value of "nextPageToken" from the previous response.
|
||||
* @return Google_Service_Plus_PeopleFeed
|
||||
*/
|
||||
public function listPeople($userId, $collection, $optParams = array())
|
||||
{
|
||||
$params = array('userId' => $userId, 'collection' => $collection);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_Plus_PeopleFeed");
|
||||
}
|
||||
/**
|
||||
* List all of the people in the specified collection for a particular activity.
|
||||
* (people.listByActivity)
|
||||
*
|
||||
* @param string $activityId The ID of the activity to get the list of people
|
||||
* for.
|
||||
* @param string $collection The collection of people to list.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults The maximum number of people to include in the
|
||||
* response, which is used for paging. For any response, the actual number
|
||||
* returned might be less than the specified maxResults.
|
||||
* @opt_param string pageToken The continuation token, which is used to page
|
||||
* through large result sets. To get the next page of results, set this
|
||||
* parameter to the value of "nextPageToken" from the previous response.
|
||||
* @return Google_Service_Plus_PeopleFeed
|
||||
*/
|
||||
public function listByActivity($activityId, $collection, $optParams = array())
|
||||
{
|
||||
$params = array('activityId' => $activityId, 'collection' => $collection);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('listByActivity', array($params), "Google_Service_Plus_PeopleFeed");
|
||||
}
|
||||
/**
|
||||
* Search all public profiles. (people.search)
|
||||
*
|
||||
* @param string $query Specify a query string for full text search of public
|
||||
* text in all profiles.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string language Specify the preferred language to search with. See
|
||||
* search language codes for available values.
|
||||
* @opt_param string maxResults The maximum number of people to include in the
|
||||
* response, which is used for paging. For any response, the actual number
|
||||
* returned might be less than the specified maxResults.
|
||||
* @opt_param string pageToken The continuation token, which is used to page
|
||||
* through large result sets. To get the next page of results, set this
|
||||
* parameter to the value of "nextPageToken" from the previous response. This
|
||||
* token can be of any length.
|
||||
* @return Google_Service_Plus_PeopleFeed
|
||||
*/
|
||||
public function search($query, $optParams = array())
|
||||
{
|
||||
$params = array('query' => $query);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('search', array($params), "Google_Service_Plus_PeopleFeed");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user