Initial commit
This commit is contained in:
59
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Acl.php
vendored
Normal file
59
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Acl.php
vendored
Normal file
@@ -0,0 +1,59 @@
|
||||
<?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_PlusDomains_Acl extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
public $description;
|
||||
public $domainRestricted;
|
||||
protected $itemsType = 'Google_Service_PlusDomains_PlusDomainsAclentryResource';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->description;
|
||||
}
|
||||
public function setDomainRestricted($domainRestricted)
|
||||
{
|
||||
$this->domainRestricted = $domainRestricted;
|
||||
}
|
||||
public function getDomainRestricted()
|
||||
{
|
||||
return $this->domainRestricted;
|
||||
}
|
||||
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/PlusDomains/Activity.php
vendored
Normal file
206
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_Activity extends Google_Model
|
||||
{
|
||||
protected $accessType = 'Google_Service_PlusDomains_Acl';
|
||||
protected $accessDataType = '';
|
||||
protected $actorType = 'Google_Service_PlusDomains_ActivityActor';
|
||||
protected $actorDataType = '';
|
||||
public $address;
|
||||
public $annotation;
|
||||
public $crosspostSource;
|
||||
public $etag;
|
||||
public $geocode;
|
||||
public $id;
|
||||
public $kind;
|
||||
protected $locationType = 'Google_Service_PlusDomains_Place';
|
||||
protected $locationDataType = '';
|
||||
protected $objectType = 'Google_Service_PlusDomains_ActivityObject';
|
||||
protected $objectDataType = '';
|
||||
public $placeId;
|
||||
public $placeName;
|
||||
protected $providerType = 'Google_Service_PlusDomains_ActivityProvider';
|
||||
protected $providerDataType = '';
|
||||
public $published;
|
||||
public $radius;
|
||||
public $title;
|
||||
public $updated;
|
||||
public $url;
|
||||
public $verb;
|
||||
|
||||
public function setAccess(Google_Service_PlusDomains_Acl $access)
|
||||
{
|
||||
$this->access = $access;
|
||||
}
|
||||
public function getAccess()
|
||||
{
|
||||
return $this->access;
|
||||
}
|
||||
public function setActor(Google_Service_PlusDomains_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_PlusDomains_Place $location)
|
||||
{
|
||||
$this->location = $location;
|
||||
}
|
||||
public function getLocation()
|
||||
{
|
||||
return $this->location;
|
||||
}
|
||||
public function setObject(Google_Service_PlusDomains_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_PlusDomains_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/PlusDomains/ActivityActor.php
vendored
Normal file
88
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_ActivityActor extends Google_Model
|
||||
{
|
||||
protected $clientSpecificActorInfoType = 'Google_Service_PlusDomains_ActivityActorClientSpecificActorInfo';
|
||||
protected $clientSpecificActorInfoDataType = '';
|
||||
public $displayName;
|
||||
public $id;
|
||||
protected $imageType = 'Google_Service_PlusDomains_ActivityActorImage';
|
||||
protected $imageDataType = '';
|
||||
protected $nameType = 'Google_Service_PlusDomains_ActivityActorName';
|
||||
protected $nameDataType = '';
|
||||
public $url;
|
||||
protected $verificationType = 'Google_Service_PlusDomains_ActivityActorVerification';
|
||||
protected $verificationDataType = '';
|
||||
|
||||
public function setClientSpecificActorInfo(Google_Service_PlusDomains_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_PlusDomains_ActivityActorImage $image)
|
||||
{
|
||||
$this->image = $image;
|
||||
}
|
||||
public function getImage()
|
||||
{
|
||||
return $this->image;
|
||||
}
|
||||
public function setName(Google_Service_PlusDomains_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_PlusDomains_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_PlusDomains_ActivityActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $youtubeActorInfoType = 'Google_Service_PlusDomains_ActivityActorClientSpecificActorInfoYoutubeActorInfo';
|
||||
protected $youtubeActorInfoDataType = '';
|
||||
|
||||
public function setYoutubeActorInfo(Google_Service_PlusDomains_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_PlusDomains_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/PlusDomains/ActivityActorImage.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/ActivityActorName.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/ActivityActorVerification.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/ActivityFeed.php
vendored
Normal file
104
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_ActivityFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
public $etag;
|
||||
public $id;
|
||||
protected $itemsType = 'Google_Service_PlusDomains_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;
|
||||
}
|
||||
}
|
||||
127
vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObject.php
vendored
Normal file
127
vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObject.php
vendored
Normal file
@@ -0,0 +1,127 @@
|
||||
<?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_PlusDomains_ActivityObject extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'attachments';
|
||||
protected $actorType = 'Google_Service_PlusDomains_ActivityObjectActor';
|
||||
protected $actorDataType = '';
|
||||
protected $attachmentsType = 'Google_Service_PlusDomains_ActivityObjectAttachments';
|
||||
protected $attachmentsDataType = 'array';
|
||||
public $content;
|
||||
public $id;
|
||||
public $objectType;
|
||||
public $originalContent;
|
||||
protected $plusonersType = 'Google_Service_PlusDomains_ActivityObjectPlusoners';
|
||||
protected $plusonersDataType = '';
|
||||
protected $repliesType = 'Google_Service_PlusDomains_ActivityObjectReplies';
|
||||
protected $repliesDataType = '';
|
||||
protected $resharersType = 'Google_Service_PlusDomains_ActivityObjectResharers';
|
||||
protected $resharersDataType = '';
|
||||
protected $statusForViewerType = 'Google_Service_PlusDomains_ActivityObjectStatusForViewer';
|
||||
protected $statusForViewerDataType = '';
|
||||
public $url;
|
||||
|
||||
public function setActor(Google_Service_PlusDomains_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_PlusDomains_ActivityObjectPlusoners $plusoners)
|
||||
{
|
||||
$this->plusoners = $plusoners;
|
||||
}
|
||||
public function getPlusoners()
|
||||
{
|
||||
return $this->plusoners;
|
||||
}
|
||||
public function setReplies(Google_Service_PlusDomains_ActivityObjectReplies $replies)
|
||||
{
|
||||
$this->replies = $replies;
|
||||
}
|
||||
public function getReplies()
|
||||
{
|
||||
return $this->replies;
|
||||
}
|
||||
public function setResharers(Google_Service_PlusDomains_ActivityObjectResharers $resharers)
|
||||
{
|
||||
$this->resharers = $resharers;
|
||||
}
|
||||
public function getResharers()
|
||||
{
|
||||
return $this->resharers;
|
||||
}
|
||||
public function setStatusForViewer(Google_Service_PlusDomains_ActivityObjectStatusForViewer $statusForViewer)
|
||||
{
|
||||
$this->statusForViewer = $statusForViewer;
|
||||
}
|
||||
public function getStatusForViewer()
|
||||
{
|
||||
return $this->statusForViewer;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
78
vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectActor.php
vendored
Normal file
78
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_ActivityObjectActor extends Google_Model
|
||||
{
|
||||
protected $clientSpecificActorInfoType = 'Google_Service_PlusDomains_ActivityObjectActorClientSpecificActorInfo';
|
||||
protected $clientSpecificActorInfoDataType = '';
|
||||
public $displayName;
|
||||
public $id;
|
||||
protected $imageType = 'Google_Service_PlusDomains_ActivityObjectActorImage';
|
||||
protected $imageDataType = '';
|
||||
public $url;
|
||||
protected $verificationType = 'Google_Service_PlusDomains_ActivityObjectActorVerification';
|
||||
protected $verificationDataType = '';
|
||||
|
||||
public function setClientSpecificActorInfo(Google_Service_PlusDomains_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_PlusDomains_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_PlusDomains_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_PlusDomains_ActivityObjectActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $youtubeActorInfoType = 'Google_Service_PlusDomains_ActivityObjectActorClientSpecificActorInfoYoutubeActorInfo';
|
||||
protected $youtubeActorInfoDataType = '';
|
||||
|
||||
public function setYoutubeActorInfo(Google_Service_PlusDomains_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_PlusDomains_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/PlusDomains/ActivityObjectActorImage.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_ActivityObjectActorImage extends Google_Model
|
||||
{
|
||||
public $url;
|
||||
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
@@ -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_PlusDomains_ActivityObjectActorVerification extends Google_Model
|
||||
{
|
||||
public $adHocVerified;
|
||||
|
||||
public function setAdHocVerified($adHocVerified)
|
||||
{
|
||||
$this->adHocVerified = $adHocVerified;
|
||||
}
|
||||
public function getAdHocVerified()
|
||||
{
|
||||
return $this->adHocVerified;
|
||||
}
|
||||
}
|
||||
117
vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachments.php
vendored
Normal file
117
vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityObjectAttachments.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_PlusDomains_ActivityObjectAttachments extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'thumbnails';
|
||||
public $content;
|
||||
public $displayName;
|
||||
protected $embedType = 'Google_Service_PlusDomains_ActivityObjectAttachmentsEmbed';
|
||||
protected $embedDataType = '';
|
||||
protected $fullImageType = 'Google_Service_PlusDomains_ActivityObjectAttachmentsFullImage';
|
||||
protected $fullImageDataType = '';
|
||||
public $id;
|
||||
protected $imageType = 'Google_Service_PlusDomains_ActivityObjectAttachmentsImage';
|
||||
protected $imageDataType = '';
|
||||
public $objectType;
|
||||
protected $previewThumbnailsType = 'Google_Service_PlusDomains_ActivityObjectAttachmentsPreviewThumbnails';
|
||||
protected $previewThumbnailsDataType = 'array';
|
||||
protected $thumbnailsType = 'Google_Service_PlusDomains_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_PlusDomains_ActivityObjectAttachmentsEmbed $embed)
|
||||
{
|
||||
$this->embed = $embed;
|
||||
}
|
||||
public function getEmbed()
|
||||
{
|
||||
return $this->embed;
|
||||
}
|
||||
public function setFullImage(Google_Service_PlusDomains_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_PlusDomains_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 setPreviewThumbnails($previewThumbnails)
|
||||
{
|
||||
$this->previewThumbnails = $previewThumbnails;
|
||||
}
|
||||
public function getPreviewThumbnails()
|
||||
{
|
||||
return $this->previewThumbnails;
|
||||
}
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -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_PlusDomains_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;
|
||||
}
|
||||
}
|
||||
@@ -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_PlusDomains_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;
|
||||
}
|
||||
}
|
||||
@@ -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_PlusDomains_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;
|
||||
}
|
||||
}
|
||||
@@ -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_PlusDomains_ActivityObjectAttachmentsPreviewThumbnails extends Google_Model
|
||||
{
|
||||
public $url;
|
||||
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
@@ -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_PlusDomains_ActivityObjectAttachmentsThumbnails extends Google_Model
|
||||
{
|
||||
public $description;
|
||||
protected $imageType = 'Google_Service_PlusDomains_ActivityObjectAttachmentsThumbnailsImage';
|
||||
protected $imageDataType = '';
|
||||
public $url;
|
||||
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->description;
|
||||
}
|
||||
public function setImage(Google_Service_PlusDomains_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_PlusDomains_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/PlusDomains/ActivityObjectPlusoners.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/ActivityObjectReplies.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/ActivityObjectResharers.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
<?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_PlusDomains_ActivityObjectStatusForViewer extends Google_Model
|
||||
{
|
||||
public $canComment;
|
||||
public $canPlusone;
|
||||
public $canUpdate;
|
||||
public $isPlusOned;
|
||||
public $resharingDisabled;
|
||||
|
||||
public function setCanComment($canComment)
|
||||
{
|
||||
$this->canComment = $canComment;
|
||||
}
|
||||
public function getCanComment()
|
||||
{
|
||||
return $this->canComment;
|
||||
}
|
||||
public function setCanPlusone($canPlusone)
|
||||
{
|
||||
$this->canPlusone = $canPlusone;
|
||||
}
|
||||
public function getCanPlusone()
|
||||
{
|
||||
return $this->canPlusone;
|
||||
}
|
||||
public function setCanUpdate($canUpdate)
|
||||
{
|
||||
$this->canUpdate = $canUpdate;
|
||||
}
|
||||
public function getCanUpdate()
|
||||
{
|
||||
return $this->canUpdate;
|
||||
}
|
||||
public function setIsPlusOned($isPlusOned)
|
||||
{
|
||||
$this->isPlusOned = $isPlusOned;
|
||||
}
|
||||
public function getIsPlusOned()
|
||||
{
|
||||
return $this->isPlusOned;
|
||||
}
|
||||
public function setResharingDisabled($resharingDisabled)
|
||||
{
|
||||
$this->resharingDisabled = $resharingDisabled;
|
||||
}
|
||||
public function getResharingDisabled()
|
||||
{
|
||||
return $this->resharingDisabled;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/ActivityProvider.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_ActivityProvider extends Google_Model
|
||||
{
|
||||
public $title;
|
||||
|
||||
public function setTitle($title)
|
||||
{
|
||||
$this->title = $title;
|
||||
}
|
||||
public function getTitle()
|
||||
{
|
||||
return $this->title;
|
||||
}
|
||||
}
|
||||
67
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Audience.php
vendored
Normal file
67
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Audience.php
vendored
Normal file
@@ -0,0 +1,67 @@
|
||||
<?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_PlusDomains_Audience extends Google_Model
|
||||
{
|
||||
public $etag;
|
||||
protected $itemType = 'Google_Service_PlusDomains_PlusDomainsAclentryResource';
|
||||
protected $itemDataType = '';
|
||||
public $kind;
|
||||
public $memberCount;
|
||||
public $visibility;
|
||||
|
||||
public function setEtag($etag)
|
||||
{
|
||||
$this->etag = $etag;
|
||||
}
|
||||
public function getEtag()
|
||||
{
|
||||
return $this->etag;
|
||||
}
|
||||
public function setItem(Google_Service_PlusDomains_PlusDomainsAclentryResource $item)
|
||||
{
|
||||
$this->item = $item;
|
||||
}
|
||||
public function getItem()
|
||||
{
|
||||
return $this->item;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setMemberCount($memberCount)
|
||||
{
|
||||
$this->memberCount = $memberCount;
|
||||
}
|
||||
public function getMemberCount()
|
||||
{
|
||||
return $this->memberCount;
|
||||
}
|
||||
public function setVisibility($visibility)
|
||||
{
|
||||
$this->visibility = $visibility;
|
||||
}
|
||||
public function getVisibility()
|
||||
{
|
||||
return $this->visibility;
|
||||
}
|
||||
}
|
||||
68
vendor/google/apiclient-services/src/Google/Service/PlusDomains/AudiencesFeed.php
vendored
Normal file
68
vendor/google/apiclient-services/src/Google/Service/PlusDomains/AudiencesFeed.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_PlusDomains_AudiencesFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
public $etag;
|
||||
protected $itemsType = 'Google_Service_PlusDomains_Audience';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
public $nextPageToken;
|
||||
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 setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
85
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Circle.php
vendored
Normal file
85
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Circle.php
vendored
Normal file
@@ -0,0 +1,85 @@
|
||||
<?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_PlusDomains_Circle extends Google_Model
|
||||
{
|
||||
public $description;
|
||||
public $displayName;
|
||||
public $etag;
|
||||
public $id;
|
||||
public $kind;
|
||||
protected $peopleType = 'Google_Service_PlusDomains_CirclePeople';
|
||||
protected $peopleDataType = '';
|
||||
public $selfLink;
|
||||
|
||||
public function setDescription($description)
|
||||
{
|
||||
$this->description = $description;
|
||||
}
|
||||
public function getDescription()
|
||||
{
|
||||
return $this->description;
|
||||
}
|
||||
public function setDisplayName($displayName)
|
||||
{
|
||||
$this->displayName = $displayName;
|
||||
}
|
||||
public function getDisplayName()
|
||||
{
|
||||
return $this->displayName;
|
||||
}
|
||||
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 setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setPeople(Google_Service_PlusDomains_CirclePeople $people)
|
||||
{
|
||||
$this->people = $people;
|
||||
}
|
||||
public function getPeople()
|
||||
{
|
||||
return $this->people;
|
||||
}
|
||||
public function setSelfLink($selfLink)
|
||||
{
|
||||
$this->selfLink = $selfLink;
|
||||
}
|
||||
public function getSelfLink()
|
||||
{
|
||||
return $this->selfLink;
|
||||
}
|
||||
}
|
||||
95
vendor/google/apiclient-services/src/Google/Service/PlusDomains/CircleFeed.php
vendored
Normal file
95
vendor/google/apiclient-services/src/Google/Service/PlusDomains/CircleFeed.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_PlusDomains_CircleFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
public $etag;
|
||||
protected $itemsType = 'Google_Service_PlusDomains_Circle';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
public $nextLink;
|
||||
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 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 setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/CirclePeople.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/CirclePeople.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_PlusDomains_CirclePeople extends Google_Model
|
||||
{
|
||||
public $totalItems;
|
||||
|
||||
public function setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
125
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Comment.php
vendored
Normal file
125
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_Comment extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'inReplyTo';
|
||||
protected $actorType = 'Google_Service_PlusDomains_CommentActor';
|
||||
protected $actorDataType = '';
|
||||
public $etag;
|
||||
public $id;
|
||||
protected $inReplyToType = 'Google_Service_PlusDomains_CommentInReplyTo';
|
||||
protected $inReplyToDataType = 'array';
|
||||
public $kind;
|
||||
protected $objectType = 'Google_Service_PlusDomains_CommentObject';
|
||||
protected $objectDataType = '';
|
||||
protected $plusonersType = 'Google_Service_PlusDomains_CommentPlusoners';
|
||||
protected $plusonersDataType = '';
|
||||
public $published;
|
||||
public $selfLink;
|
||||
public $updated;
|
||||
public $verb;
|
||||
|
||||
public function setActor(Google_Service_PlusDomains_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_PlusDomains_CommentObject $object)
|
||||
{
|
||||
$this->object = $object;
|
||||
}
|
||||
public function getObject()
|
||||
{
|
||||
return $this->object;
|
||||
}
|
||||
public function setPlusoners(Google_Service_PlusDomains_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/PlusDomains/CommentActor.php
vendored
Normal file
78
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_CommentActor extends Google_Model
|
||||
{
|
||||
protected $clientSpecificActorInfoType = 'Google_Service_PlusDomains_CommentActorClientSpecificActorInfo';
|
||||
protected $clientSpecificActorInfoDataType = '';
|
||||
public $displayName;
|
||||
public $id;
|
||||
protected $imageType = 'Google_Service_PlusDomains_CommentActorImage';
|
||||
protected $imageDataType = '';
|
||||
public $url;
|
||||
protected $verificationType = 'Google_Service_PlusDomains_CommentActorVerification';
|
||||
protected $verificationDataType = '';
|
||||
|
||||
public function setClientSpecificActorInfo(Google_Service_PlusDomains_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_PlusDomains_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_PlusDomains_CommentActorVerification $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_PlusDomains_CommentActorClientSpecificActorInfo extends Google_Model
|
||||
{
|
||||
protected $youtubeActorInfoType = 'Google_Service_PlusDomains_CommentActorClientSpecificActorInfoYoutubeActorInfo';
|
||||
protected $youtubeActorInfoDataType = '';
|
||||
|
||||
public function setYoutubeActorInfo(Google_Service_PlusDomains_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_PlusDomains_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/PlusDomains/CommentActorImage.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/CommentActorVerification.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/CommentFeed.php
vendored
Normal file
95
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_CommentFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
public $etag;
|
||||
public $id;
|
||||
protected $itemsType = 'Google_Service_PlusDomains_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/PlusDomains/CommentInReplyTo.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/CommentObject.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/CommentPlusoners.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_CommentPlusoners extends Google_Model
|
||||
{
|
||||
public $totalItems;
|
||||
|
||||
public function setTotalItems($totalItems)
|
||||
{
|
||||
$this->totalItems = $totalItems;
|
||||
}
|
||||
public function getTotalItems()
|
||||
{
|
||||
return $this->totalItems;
|
||||
}
|
||||
}
|
||||
187
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Media.php
vendored
Normal file
187
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Media.php
vendored
Normal file
@@ -0,0 +1,187 @@
|
||||
<?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_PlusDomains_Media extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'streams';
|
||||
protected $authorType = 'Google_Service_PlusDomains_MediaAuthor';
|
||||
protected $authorDataType = '';
|
||||
public $displayName;
|
||||
public $etag;
|
||||
protected $exifType = 'Google_Service_PlusDomains_MediaExif';
|
||||
protected $exifDataType = '';
|
||||
public $height;
|
||||
public $id;
|
||||
public $kind;
|
||||
public $mediaCreatedTime;
|
||||
public $mediaUrl;
|
||||
public $published;
|
||||
public $sizeBytes;
|
||||
protected $streamsType = 'Google_Service_PlusDomains_Videostream';
|
||||
protected $streamsDataType = 'array';
|
||||
public $summary;
|
||||
public $updated;
|
||||
public $url;
|
||||
public $videoDuration;
|
||||
public $videoStatus;
|
||||
public $width;
|
||||
|
||||
public function setAuthor(Google_Service_PlusDomains_MediaAuthor $author)
|
||||
{
|
||||
$this->author = $author;
|
||||
}
|
||||
public function getAuthor()
|
||||
{
|
||||
return $this->author;
|
||||
}
|
||||
public function setDisplayName($displayName)
|
||||
{
|
||||
$this->displayName = $displayName;
|
||||
}
|
||||
public function getDisplayName()
|
||||
{
|
||||
return $this->displayName;
|
||||
}
|
||||
public function setEtag($etag)
|
||||
{
|
||||
$this->etag = $etag;
|
||||
}
|
||||
public function getEtag()
|
||||
{
|
||||
return $this->etag;
|
||||
}
|
||||
public function setExif(Google_Service_PlusDomains_MediaExif $exif)
|
||||
{
|
||||
$this->exif = $exif;
|
||||
}
|
||||
public function getExif()
|
||||
{
|
||||
return $this->exif;
|
||||
}
|
||||
public function setHeight($height)
|
||||
{
|
||||
$this->height = $height;
|
||||
}
|
||||
public function getHeight()
|
||||
{
|
||||
return $this->height;
|
||||
}
|
||||
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 setMediaCreatedTime($mediaCreatedTime)
|
||||
{
|
||||
$this->mediaCreatedTime = $mediaCreatedTime;
|
||||
}
|
||||
public function getMediaCreatedTime()
|
||||
{
|
||||
return $this->mediaCreatedTime;
|
||||
}
|
||||
public function setMediaUrl($mediaUrl)
|
||||
{
|
||||
$this->mediaUrl = $mediaUrl;
|
||||
}
|
||||
public function getMediaUrl()
|
||||
{
|
||||
return $this->mediaUrl;
|
||||
}
|
||||
public function setPublished($published)
|
||||
{
|
||||
$this->published = $published;
|
||||
}
|
||||
public function getPublished()
|
||||
{
|
||||
return $this->published;
|
||||
}
|
||||
public function setSizeBytes($sizeBytes)
|
||||
{
|
||||
$this->sizeBytes = $sizeBytes;
|
||||
}
|
||||
public function getSizeBytes()
|
||||
{
|
||||
return $this->sizeBytes;
|
||||
}
|
||||
public function setStreams($streams)
|
||||
{
|
||||
$this->streams = $streams;
|
||||
}
|
||||
public function getStreams()
|
||||
{
|
||||
return $this->streams;
|
||||
}
|
||||
public function setSummary($summary)
|
||||
{
|
||||
$this->summary = $summary;
|
||||
}
|
||||
public function getSummary()
|
||||
{
|
||||
return $this->summary;
|
||||
}
|
||||
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 setVideoDuration($videoDuration)
|
||||
{
|
||||
$this->videoDuration = $videoDuration;
|
||||
}
|
||||
public function getVideoDuration()
|
||||
{
|
||||
return $this->videoDuration;
|
||||
}
|
||||
public function setVideoStatus($videoStatus)
|
||||
{
|
||||
$this->videoStatus = $videoStatus;
|
||||
}
|
||||
public function getVideoStatus()
|
||||
{
|
||||
return $this->videoStatus;
|
||||
}
|
||||
public function setWidth($width)
|
||||
{
|
||||
$this->width = $width;
|
||||
}
|
||||
public function getWidth()
|
||||
{
|
||||
return $this->width;
|
||||
}
|
||||
}
|
||||
58
vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaAuthor.php
vendored
Normal file
58
vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaAuthor.php
vendored
Normal file
@@ -0,0 +1,58 @@
|
||||
<?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_PlusDomains_MediaAuthor extends Google_Model
|
||||
{
|
||||
public $displayName;
|
||||
public $id;
|
||||
protected $imageType = 'Google_Service_PlusDomains_MediaAuthorImage';
|
||||
protected $imageDataType = '';
|
||||
public $url;
|
||||
|
||||
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_PlusDomains_MediaAuthorImage $image)
|
||||
{
|
||||
$this->image = $image;
|
||||
}
|
||||
public function getImage()
|
||||
{
|
||||
return $this->image;
|
||||
}
|
||||
public function setUrl($url)
|
||||
{
|
||||
$this->url = $url;
|
||||
}
|
||||
public function getUrl()
|
||||
{
|
||||
return $this->url;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaAuthorImage.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaAuthorImage.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_PlusDomains_MediaAuthorImage 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/PlusDomains/MediaExif.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/MediaExif.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_PlusDomains_MediaExif extends Google_Model
|
||||
{
|
||||
public $time;
|
||||
|
||||
public function setTime($time)
|
||||
{
|
||||
$this->time = $time;
|
||||
}
|
||||
public function getTime()
|
||||
{
|
||||
return $this->time;
|
||||
}
|
||||
}
|
||||
86
vendor/google/apiclient-services/src/Google/Service/PlusDomains/PeopleFeed.php
vendored
Normal file
86
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_PeopleFeed extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
public $etag;
|
||||
protected $itemsType = 'Google_Service_PlusDomains_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;
|
||||
}
|
||||
}
|
||||
281
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Person.php
vendored
Normal file
281
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Person.php
vendored
Normal file
@@ -0,0 +1,281 @@
|
||||
<?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_PlusDomains_Person extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'urls';
|
||||
public $aboutMe;
|
||||
public $birthday;
|
||||
public $braggingRights;
|
||||
public $circledByCount;
|
||||
protected $coverType = 'Google_Service_PlusDomains_PersonCover';
|
||||
protected $coverDataType = '';
|
||||
public $currentLocation;
|
||||
public $displayName;
|
||||
public $domain;
|
||||
protected $emailsType = 'Google_Service_PlusDomains_PersonEmails';
|
||||
protected $emailsDataType = 'array';
|
||||
public $etag;
|
||||
public $gender;
|
||||
public $id;
|
||||
protected $imageType = 'Google_Service_PlusDomains_PersonImage';
|
||||
protected $imageDataType = '';
|
||||
public $isPlusUser;
|
||||
public $kind;
|
||||
protected $nameType = 'Google_Service_PlusDomains_PersonName';
|
||||
protected $nameDataType = '';
|
||||
public $nickname;
|
||||
public $objectType;
|
||||
public $occupation;
|
||||
protected $organizationsType = 'Google_Service_PlusDomains_PersonOrganizations';
|
||||
protected $organizationsDataType = 'array';
|
||||
protected $placesLivedType = 'Google_Service_PlusDomains_PersonPlacesLived';
|
||||
protected $placesLivedDataType = 'array';
|
||||
public $plusOneCount;
|
||||
public $relationshipStatus;
|
||||
public $skills;
|
||||
public $tagline;
|
||||
public $url;
|
||||
protected $urlsType = 'Google_Service_PlusDomains_PersonUrls';
|
||||
protected $urlsDataType = 'array';
|
||||
public $verified;
|
||||
|
||||
public function setAboutMe($aboutMe)
|
||||
{
|
||||
$this->aboutMe = $aboutMe;
|
||||
}
|
||||
public function getAboutMe()
|
||||
{
|
||||
return $this->aboutMe;
|
||||
}
|
||||
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_PlusDomains_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_PlusDomains_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 setName(Google_Service_PlusDomains_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;
|
||||
}
|
||||
}
|
||||
50
vendor/google/apiclient-services/src/Google/Service/PlusDomains/PersonCover.php
vendored
Normal file
50
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_PersonCover extends Google_Model
|
||||
{
|
||||
protected $coverInfoType = 'Google_Service_PlusDomains_PersonCoverCoverInfo';
|
||||
protected $coverInfoDataType = '';
|
||||
protected $coverPhotoType = 'Google_Service_PlusDomains_PersonCoverCoverPhoto';
|
||||
protected $coverPhotoDataType = '';
|
||||
public $layout;
|
||||
|
||||
public function setCoverInfo(Google_Service_PlusDomains_PersonCoverCoverInfo $coverInfo)
|
||||
{
|
||||
$this->coverInfo = $coverInfo;
|
||||
}
|
||||
public function getCoverInfo()
|
||||
{
|
||||
return $this->coverInfo;
|
||||
}
|
||||
public function setCoverPhoto(Google_Service_PlusDomains_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/PlusDomains/PersonCoverCoverInfo.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/PersonCoverCoverPhoto.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/PersonEmails.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/PersonImage.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/PersonName.php
vendored
Normal file
75
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/PersonOrganizations.php
vendored
Normal file
102
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/PersonPlacesLived.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/PersonUrls.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/Place.php
vendored
Normal file
68
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_Place extends Google_Model
|
||||
{
|
||||
protected $addressType = 'Google_Service_PlusDomains_PlaceAddress';
|
||||
protected $addressDataType = '';
|
||||
public $displayName;
|
||||
public $id;
|
||||
public $kind;
|
||||
protected $positionType = 'Google_Service_PlusDomains_PlacePosition';
|
||||
protected $positionDataType = '';
|
||||
|
||||
public function setAddress(Google_Service_PlusDomains_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_PlusDomains_PlacePosition $position)
|
||||
{
|
||||
$this->position = $position;
|
||||
}
|
||||
public function getPosition()
|
||||
{
|
||||
return $this->position;
|
||||
}
|
||||
}
|
||||
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/PlaceAddress.php
vendored
Normal file
30
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/PlacePosition.php
vendored
Normal file
39
vendor/google/apiclient-services/src/Google/Service/PlusDomains/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_PlusDomains_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/PlusDomains/PlusDomainsAclentryResource.php
vendored
Normal file
48
vendor/google/apiclient-services/src/Google/Service/PlusDomains/PlusDomainsAclentryResource.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_PlusDomains_PlusDomainsAclentryResource 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;
|
||||
}
|
||||
}
|
||||
83
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Activities.php
vendored
Normal file
83
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Activities.php
vendored
Normal file
@@ -0,0 +1,83 @@
|
||||
<?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>
|
||||
* $plusDomainsService = new Google_Service_PlusDomains(...);
|
||||
* $activities = $plusDomainsService->activities;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_PlusDomains_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_PlusDomains_Activity
|
||||
*/
|
||||
public function get($activityId, $optParams = array())
|
||||
{
|
||||
$params = array('activityId' => $activityId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_PlusDomains_Activity");
|
||||
}
|
||||
/**
|
||||
* Create a new activity for the authenticated user. (activities.insert)
|
||||
*
|
||||
* @param string $userId The ID of the user to create the activity on behalf of.
|
||||
* Its value should be "me", to indicate the authenticated user.
|
||||
* @param Google_Service_PlusDomains_Activity $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param bool preview If "true", extract the potential media attachments
|
||||
* for a URL. The response will include all possible attachments for a URL,
|
||||
* including video, photos, and articles based on the content of the page.
|
||||
* @return Google_Service_PlusDomains_Activity
|
||||
*/
|
||||
public function insert($userId, Google_Service_PlusDomains_Activity $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('userId' => $userId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_PlusDomains_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_PlusDomains_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_PlusDomains_ActivityFeed");
|
||||
}
|
||||
}
|
||||
50
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Audiences.php
vendored
Normal file
50
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Audiences.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.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "audiences" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $plusDomainsService = new Google_Service_PlusDomains(...);
|
||||
* $audiences = $plusDomainsService->audiences;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_PlusDomains_Resource_Audiences extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* List all of the audiences to which a user can share.
|
||||
* (audiences.listAudiences)
|
||||
*
|
||||
* @param string $userId The ID of the user to get audiences for. The special
|
||||
* value "me" can be used to indicate the authenticated user.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults The maximum number of circles 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_PlusDomains_AudiencesFeed
|
||||
*/
|
||||
public function listAudiences($userId, $optParams = array())
|
||||
{
|
||||
$params = array('userId' => $userId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_PlusDomains_AudiencesFeed");
|
||||
}
|
||||
}
|
||||
154
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Circles.php
vendored
Normal file
154
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Circles.php
vendored
Normal file
@@ -0,0 +1,154 @@
|
||||
<?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 "circles" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $plusDomainsService = new Google_Service_PlusDomains(...);
|
||||
* $circles = $plusDomainsService->circles;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_PlusDomains_Resource_Circles extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Add a person to a circle. Google+ limits certain circle operations, including
|
||||
* the number of circle adds. Learn More. (circles.addPeople)
|
||||
*
|
||||
* @param string $circleId The ID of the circle to add the person to.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string email Email of the people to add to the circle. Optional,
|
||||
* can be repeated.
|
||||
* @opt_param string userId IDs of the people to add to the circle. Optional,
|
||||
* can be repeated.
|
||||
* @return Google_Service_PlusDomains_Circle
|
||||
*/
|
||||
public function addPeople($circleId, $optParams = array())
|
||||
{
|
||||
$params = array('circleId' => $circleId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('addPeople', array($params), "Google_Service_PlusDomains_Circle");
|
||||
}
|
||||
/**
|
||||
* Get a circle. (circles.get)
|
||||
*
|
||||
* @param string $circleId The ID of the circle to get.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_PlusDomains_Circle
|
||||
*/
|
||||
public function get($circleId, $optParams = array())
|
||||
{
|
||||
$params = array('circleId' => $circleId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_PlusDomains_Circle");
|
||||
}
|
||||
/**
|
||||
* Create a new circle for the authenticated user. (circles.insert)
|
||||
*
|
||||
* @param string $userId The ID of the user to create the circle on behalf of.
|
||||
* The value "me" can be used to indicate the authenticated user.
|
||||
* @param Google_Service_PlusDomains_Circle $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_PlusDomains_Circle
|
||||
*/
|
||||
public function insert($userId, Google_Service_PlusDomains_Circle $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('userId' => $userId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_PlusDomains_Circle");
|
||||
}
|
||||
/**
|
||||
* List all of the circles for a user. (circles.listCircles)
|
||||
*
|
||||
* @param string $userId The ID of the user to get circles for. The special
|
||||
* value "me" can be used to indicate the authenticated user.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string maxResults The maximum number of circles 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_PlusDomains_CircleFeed
|
||||
*/
|
||||
public function listCircles($userId, $optParams = array())
|
||||
{
|
||||
$params = array('userId' => $userId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_PlusDomains_CircleFeed");
|
||||
}
|
||||
/**
|
||||
* Update a circle's description. This method supports patch semantics.
|
||||
* (circles.patch)
|
||||
*
|
||||
* @param string $circleId The ID of the circle to update.
|
||||
* @param Google_Service_PlusDomains_Circle $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_PlusDomains_Circle
|
||||
*/
|
||||
public function patch($circleId, Google_Service_PlusDomains_Circle $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('circleId' => $circleId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('patch', array($params), "Google_Service_PlusDomains_Circle");
|
||||
}
|
||||
/**
|
||||
* Delete a circle. (circles.remove)
|
||||
*
|
||||
* @param string $circleId The ID of the circle to delete.
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function remove($circleId, $optParams = array())
|
||||
{
|
||||
$params = array('circleId' => $circleId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('remove', array($params));
|
||||
}
|
||||
/**
|
||||
* Remove a person from a circle. (circles.removePeople)
|
||||
*
|
||||
* @param string $circleId The ID of the circle to remove the person from.
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string email Email of the people to add to the circle. Optional,
|
||||
* can be repeated.
|
||||
* @opt_param string userId IDs of the people to remove from the circle.
|
||||
* Optional, can be repeated.
|
||||
*/
|
||||
public function removePeople($circleId, $optParams = array())
|
||||
{
|
||||
$params = array('circleId' => $circleId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('removePeople', array($params));
|
||||
}
|
||||
/**
|
||||
* Update a circle's description. (circles.update)
|
||||
*
|
||||
* @param string $circleId The ID of the circle to update.
|
||||
* @param Google_Service_PlusDomains_Circle $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_PlusDomains_Circle
|
||||
*/
|
||||
public function update($circleId, Google_Service_PlusDomains_Circle $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('circleId' => $circleId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_PlusDomains_Circle");
|
||||
}
|
||||
}
|
||||
76
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Comments.php
vendored
Normal file
76
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Comments.php
vendored
Normal file
@@ -0,0 +1,76 @@
|
||||
<?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>
|
||||
* $plusDomainsService = new Google_Service_PlusDomains(...);
|
||||
* $comments = $plusDomainsService->comments;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_PlusDomains_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_PlusDomains_Comment
|
||||
*/
|
||||
public function get($commentId, $optParams = array())
|
||||
{
|
||||
$params = array('commentId' => $commentId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_PlusDomains_Comment");
|
||||
}
|
||||
/**
|
||||
* Create a new comment in reply to an activity. (comments.insert)
|
||||
*
|
||||
* @param string $activityId The ID of the activity to reply to.
|
||||
* @param Google_Service_PlusDomains_Comment $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_PlusDomains_Comment
|
||||
*/
|
||||
public function insert($activityId, Google_Service_PlusDomains_Comment $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('activityId' => $activityId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_PlusDomains_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_PlusDomains_CommentFeed
|
||||
*/
|
||||
public function listComments($activityId, $optParams = array())
|
||||
{
|
||||
$params = array('activityId' => $activityId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_PlusDomains_CommentFeed");
|
||||
}
|
||||
}
|
||||
46
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Media.php
vendored
Normal file
46
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/Media.php
vendored
Normal file
@@ -0,0 +1,46 @@
|
||||
<?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 "media" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $plusDomainsService = new Google_Service_PlusDomains(...);
|
||||
* $media = $plusDomainsService->media;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_PlusDomains_Resource_Media extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Add a new media item to an album. The current upload size limitations are
|
||||
* 36MB for a photo and 1GB for a video. Uploads do not count against quota if
|
||||
* photos are less than 2048 pixels on their longest side or videos are less
|
||||
* than 15 minutes in length. (media.insert)
|
||||
*
|
||||
* @param string $userId The ID of the user to create the activity on behalf of.
|
||||
* @param string $collection
|
||||
* @param Google_Service_PlusDomains_Media $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_PlusDomains_Media
|
||||
*/
|
||||
public function insert($userId, $collection, Google_Service_PlusDomains_Media $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('userId' => $userId, 'collection' => $collection, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_PlusDomains_Media");
|
||||
}
|
||||
}
|
||||
108
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/People.php
vendored
Normal file
108
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Resource/People.php
vendored
Normal file
@@ -0,0 +1,108 @@
|
||||
<?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>
|
||||
* $plusDomainsService = new Google_Service_PlusDomains(...);
|
||||
* $people = $plusDomainsService->people;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_PlusDomains_Resource_People extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Get a person's profile. (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_PlusDomains_Person
|
||||
*/
|
||||
public function get($userId, $optParams = array())
|
||||
{
|
||||
$params = array('userId' => $userId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_PlusDomains_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_PlusDomains_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_PlusDomains_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_PlusDomains_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_PlusDomains_PeopleFeed");
|
||||
}
|
||||
/**
|
||||
* List all of the people who are members of a circle. (people.listByCircle)
|
||||
*
|
||||
* @param string $circleId The ID of the circle to get the members of.
|
||||
* @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_PlusDomains_PeopleFeed
|
||||
*/
|
||||
public function listByCircle($circleId, $optParams = array())
|
||||
{
|
||||
$params = array('circleId' => $circleId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('listByCircle', array($params), "Google_Service_PlusDomains_PeopleFeed");
|
||||
}
|
||||
}
|
||||
57
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Videostream.php
vendored
Normal file
57
vendor/google/apiclient-services/src/Google/Service/PlusDomains/Videostream.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_PlusDomains_Videostream 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user