Nouveaux fichier suite maj librairies vendor
This commit is contained in:
140
vendor/google/apiclient-services/src/Google/Service/Reportcard/Mute.php
vendored
Normal file
140
vendor/google/apiclient-services/src/Google/Service/Reportcard/Mute.php
vendored
Normal file
@@ -0,0 +1,140 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2014 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
||||
* use this file except in compliance with the License. You may obtain a copy of
|
||||
* the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations under
|
||||
* the License.
|
||||
*/
|
||||
|
||||
class Google_Service_Reportcard_Mute extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'tag';
|
||||
public $consumer;
|
||||
public $createdBy;
|
||||
public $creationTimeMs;
|
||||
public $creator;
|
||||
public $expiryTimeMs;
|
||||
public $groupKey;
|
||||
public $id;
|
||||
public $kind;
|
||||
public $reason;
|
||||
public $sourceKey;
|
||||
public $tag;
|
||||
protected $targetType = 'Google_Service_Reportcard_Target';
|
||||
protected $targetDataType = '';
|
||||
public $text;
|
||||
|
||||
public function setConsumer($consumer)
|
||||
{
|
||||
$this->consumer = $consumer;
|
||||
}
|
||||
public function getConsumer()
|
||||
{
|
||||
return $this->consumer;
|
||||
}
|
||||
public function setCreatedBy($createdBy)
|
||||
{
|
||||
$this->createdBy = $createdBy;
|
||||
}
|
||||
public function getCreatedBy()
|
||||
{
|
||||
return $this->createdBy;
|
||||
}
|
||||
public function setCreationTimeMs($creationTimeMs)
|
||||
{
|
||||
$this->creationTimeMs = $creationTimeMs;
|
||||
}
|
||||
public function getCreationTimeMs()
|
||||
{
|
||||
return $this->creationTimeMs;
|
||||
}
|
||||
public function setCreator($creator)
|
||||
{
|
||||
$this->creator = $creator;
|
||||
}
|
||||
public function getCreator()
|
||||
{
|
||||
return $this->creator;
|
||||
}
|
||||
public function setExpiryTimeMs($expiryTimeMs)
|
||||
{
|
||||
$this->expiryTimeMs = $expiryTimeMs;
|
||||
}
|
||||
public function getExpiryTimeMs()
|
||||
{
|
||||
return $this->expiryTimeMs;
|
||||
}
|
||||
public function setGroupKey($groupKey)
|
||||
{
|
||||
$this->groupKey = $groupKey;
|
||||
}
|
||||
public function getGroupKey()
|
||||
{
|
||||
return $this->groupKey;
|
||||
}
|
||||
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 setReason($reason)
|
||||
{
|
||||
$this->reason = $reason;
|
||||
}
|
||||
public function getReason()
|
||||
{
|
||||
return $this->reason;
|
||||
}
|
||||
public function setSourceKey($sourceKey)
|
||||
{
|
||||
$this->sourceKey = $sourceKey;
|
||||
}
|
||||
public function getSourceKey()
|
||||
{
|
||||
return $this->sourceKey;
|
||||
}
|
||||
public function setTag($tag)
|
||||
{
|
||||
$this->tag = $tag;
|
||||
}
|
||||
public function getTag()
|
||||
{
|
||||
return $this->tag;
|
||||
}
|
||||
public function setTarget(Google_Service_Reportcard_Target $target)
|
||||
{
|
||||
$this->target = $target;
|
||||
}
|
||||
public function getTarget()
|
||||
{
|
||||
return $this->target;
|
||||
}
|
||||
public function setText($text)
|
||||
{
|
||||
$this->text = $text;
|
||||
}
|
||||
public function getText()
|
||||
{
|
||||
return $this->text;
|
||||
}
|
||||
}
|
||||
41
vendor/google/apiclient-services/src/Google/Service/Reportcard/MutesListResponse.php
vendored
Normal file
41
vendor/google/apiclient-services/src/Google/Service/Reportcard/MutesListResponse.php
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2014 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
||||
* use this file except in compliance with the License. You may obtain a copy of
|
||||
* the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations under
|
||||
* the License.
|
||||
*/
|
||||
|
||||
class Google_Service_Reportcard_MutesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
protected $itemsType = 'Google_Service_Reportcard_Mute';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
203
vendor/google/apiclient-services/src/Google/Service/Reportcard/Notice.php
vendored
Normal file
203
vendor/google/apiclient-services/src/Google/Service/Reportcard/Notice.php
vendored
Normal file
@@ -0,0 +1,203 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2014 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
||||
* use this file except in compliance with the License. You may obtain a copy of
|
||||
* the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations under
|
||||
* the License.
|
||||
*/
|
||||
|
||||
class Google_Service_Reportcard_Notice extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'target';
|
||||
public $category;
|
||||
public $consumer;
|
||||
public $creator;
|
||||
public $dashboardUrl;
|
||||
public $documentationUrl;
|
||||
public $groupKey;
|
||||
public $groupName;
|
||||
public $id;
|
||||
public $kind;
|
||||
public $longDescription;
|
||||
public $longDescriptionType;
|
||||
public $muteId;
|
||||
public $postingTask;
|
||||
public $postingTimeMs;
|
||||
public $score;
|
||||
public $shortDescription;
|
||||
public $sourceKey;
|
||||
public $sourceName;
|
||||
public $tag;
|
||||
protected $targetType = 'Google_Service_Reportcard_Target';
|
||||
protected $targetDataType = 'array';
|
||||
|
||||
public function setCategory($category)
|
||||
{
|
||||
$this->category = $category;
|
||||
}
|
||||
public function getCategory()
|
||||
{
|
||||
return $this->category;
|
||||
}
|
||||
public function setConsumer($consumer)
|
||||
{
|
||||
$this->consumer = $consumer;
|
||||
}
|
||||
public function getConsumer()
|
||||
{
|
||||
return $this->consumer;
|
||||
}
|
||||
public function setCreator($creator)
|
||||
{
|
||||
$this->creator = $creator;
|
||||
}
|
||||
public function getCreator()
|
||||
{
|
||||
return $this->creator;
|
||||
}
|
||||
public function setDashboardUrl($dashboardUrl)
|
||||
{
|
||||
$this->dashboardUrl = $dashboardUrl;
|
||||
}
|
||||
public function getDashboardUrl()
|
||||
{
|
||||
return $this->dashboardUrl;
|
||||
}
|
||||
public function setDocumentationUrl($documentationUrl)
|
||||
{
|
||||
$this->documentationUrl = $documentationUrl;
|
||||
}
|
||||
public function getDocumentationUrl()
|
||||
{
|
||||
return $this->documentationUrl;
|
||||
}
|
||||
public function setGroupKey($groupKey)
|
||||
{
|
||||
$this->groupKey = $groupKey;
|
||||
}
|
||||
public function getGroupKey()
|
||||
{
|
||||
return $this->groupKey;
|
||||
}
|
||||
public function setGroupName($groupName)
|
||||
{
|
||||
$this->groupName = $groupName;
|
||||
}
|
||||
public function getGroupName()
|
||||
{
|
||||
return $this->groupName;
|
||||
}
|
||||
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 setLongDescription($longDescription)
|
||||
{
|
||||
$this->longDescription = $longDescription;
|
||||
}
|
||||
public function getLongDescription()
|
||||
{
|
||||
return $this->longDescription;
|
||||
}
|
||||
public function setLongDescriptionType($longDescriptionType)
|
||||
{
|
||||
$this->longDescriptionType = $longDescriptionType;
|
||||
}
|
||||
public function getLongDescriptionType()
|
||||
{
|
||||
return $this->longDescriptionType;
|
||||
}
|
||||
public function setMuteId($muteId)
|
||||
{
|
||||
$this->muteId = $muteId;
|
||||
}
|
||||
public function getMuteId()
|
||||
{
|
||||
return $this->muteId;
|
||||
}
|
||||
public function setPostingTask($postingTask)
|
||||
{
|
||||
$this->postingTask = $postingTask;
|
||||
}
|
||||
public function getPostingTask()
|
||||
{
|
||||
return $this->postingTask;
|
||||
}
|
||||
public function setPostingTimeMs($postingTimeMs)
|
||||
{
|
||||
$this->postingTimeMs = $postingTimeMs;
|
||||
}
|
||||
public function getPostingTimeMs()
|
||||
{
|
||||
return $this->postingTimeMs;
|
||||
}
|
||||
public function setScore($score)
|
||||
{
|
||||
$this->score = $score;
|
||||
}
|
||||
public function getScore()
|
||||
{
|
||||
return $this->score;
|
||||
}
|
||||
public function setShortDescription($shortDescription)
|
||||
{
|
||||
$this->shortDescription = $shortDescription;
|
||||
}
|
||||
public function getShortDescription()
|
||||
{
|
||||
return $this->shortDescription;
|
||||
}
|
||||
public function setSourceKey($sourceKey)
|
||||
{
|
||||
$this->sourceKey = $sourceKey;
|
||||
}
|
||||
public function getSourceKey()
|
||||
{
|
||||
return $this->sourceKey;
|
||||
}
|
||||
public function setSourceName($sourceName)
|
||||
{
|
||||
$this->sourceName = $sourceName;
|
||||
}
|
||||
public function getSourceName()
|
||||
{
|
||||
return $this->sourceName;
|
||||
}
|
||||
public function setTag($tag)
|
||||
{
|
||||
$this->tag = $tag;
|
||||
}
|
||||
public function getTag()
|
||||
{
|
||||
return $this->tag;
|
||||
}
|
||||
public function setTarget($target)
|
||||
{
|
||||
$this->target = $target;
|
||||
}
|
||||
public function getTarget()
|
||||
{
|
||||
return $this->target;
|
||||
}
|
||||
}
|
||||
41
vendor/google/apiclient-services/src/Google/Service/Reportcard/NoticesListResponse.php
vendored
Normal file
41
vendor/google/apiclient-services/src/Google/Service/Reportcard/NoticesListResponse.php
vendored
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2014 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
||||
* use this file except in compliance with the License. You may obtain a copy of
|
||||
* the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations under
|
||||
* the License.
|
||||
*/
|
||||
|
||||
class Google_Service_Reportcard_NoticesListResponse extends Google_Collection
|
||||
{
|
||||
protected $collection_key = 'items';
|
||||
protected $itemsType = 'Google_Service_Reportcard_Notice';
|
||||
protected $itemsDataType = 'array';
|
||||
public $kind;
|
||||
|
||||
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;
|
||||
}
|
||||
}
|
||||
114
vendor/google/apiclient-services/src/Google/Service/Reportcard/Resource/Mutes.php
vendored
Normal file
114
vendor/google/apiclient-services/src/Google/Service/Reportcard/Resource/Mutes.php
vendored
Normal file
@@ -0,0 +1,114 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2014 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
||||
* use this file except in compliance with the License. You may obtain a copy of
|
||||
* the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations under
|
||||
* the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "mutes" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $reportcardService = new Google_Service_Reportcard(...);
|
||||
* $mutes = $reportcardService->mutes;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Reportcard_Resource_Mutes extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Deletes a Mute. (mutes.delete)
|
||||
*
|
||||
* @param string $mutesId The Mute id.
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function delete($mutesId, $optParams = array())
|
||||
{
|
||||
$params = array('mutesId' => $mutesId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('delete', array($params));
|
||||
}
|
||||
/**
|
||||
* Gets a Mute by id. (mutes.get)
|
||||
*
|
||||
* @param string $mutesId The Mute id.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Reportcard_Mute
|
||||
*/
|
||||
public function get($mutesId, $optParams = array())
|
||||
{
|
||||
$params = array('mutesId' => $mutesId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_Reportcard_Mute");
|
||||
}
|
||||
/**
|
||||
* Inserts a new Mute. (mutes.insert)
|
||||
*
|
||||
* @param Google_Service_Reportcard_Mute $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Reportcard_Mute
|
||||
*/
|
||||
public function insert(Google_Service_Reportcard_Mute $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_Reportcard_Mute");
|
||||
}
|
||||
/**
|
||||
* Returns a list of Mutes, maybe filtering by 'consumer' or 'groupKey',
|
||||
* 'sourceKey' and 'supplier'. (mutes.listMutes)
|
||||
*
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string consumer Only return Mutes for this consumer
|
||||
* @opt_param string groupKey Only return Mutes created with this group_key.
|
||||
* Supplier and source_key must also be set.
|
||||
* @opt_param string sourceKey Only return Mutes created with this source_key.
|
||||
* Supplier must also be set.
|
||||
* @opt_param string supplier Only return Mutes created by this supplier.
|
||||
* @return Google_Service_Reportcard_MutesListResponse
|
||||
*/
|
||||
public function listMutes($optParams = array())
|
||||
{
|
||||
$params = array();
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_Reportcard_MutesListResponse");
|
||||
}
|
||||
/**
|
||||
* Updates an existing Mute. This method supports patch semantics. (mutes.patch)
|
||||
*
|
||||
* @param string $mutesId The Mute id.
|
||||
* @param Google_Service_Reportcard_Mute $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Reportcard_Mute
|
||||
*/
|
||||
public function patch($mutesId, Google_Service_Reportcard_Mute $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('mutesId' => $mutesId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('patch', array($params), "Google_Service_Reportcard_Mute");
|
||||
}
|
||||
/**
|
||||
* Updates an existing Mute. (mutes.update)
|
||||
*
|
||||
* @param string $mutesId The Mute id.
|
||||
* @param Google_Service_Reportcard_Mute $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Reportcard_Mute
|
||||
*/
|
||||
public function update($mutesId, Google_Service_Reportcard_Mute $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('mutesId' => $mutesId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_Reportcard_Mute");
|
||||
}
|
||||
}
|
||||
111
vendor/google/apiclient-services/src/Google/Service/Reportcard/Resource/Notices.php
vendored
Normal file
111
vendor/google/apiclient-services/src/Google/Service/Reportcard/Resource/Notices.php
vendored
Normal file
@@ -0,0 +1,111 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2014 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
||||
* use this file except in compliance with the License. You may obtain a copy of
|
||||
* the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations under
|
||||
* the License.
|
||||
*/
|
||||
|
||||
/**
|
||||
* The "notices" collection of methods.
|
||||
* Typical usage is:
|
||||
* <code>
|
||||
* $reportcardService = new Google_Service_Reportcard(...);
|
||||
* $notices = $reportcardService->notices;
|
||||
* </code>
|
||||
*/
|
||||
class Google_Service_Reportcard_Resource_Notices extends Google_Service_Resource
|
||||
{
|
||||
/**
|
||||
* Deletes a Notice. (notices.delete)
|
||||
*
|
||||
* @param string $noticesId The Notice id.
|
||||
* @param array $optParams Optional parameters.
|
||||
*/
|
||||
public function delete($noticesId, $optParams = array())
|
||||
{
|
||||
$params = array('noticesId' => $noticesId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('delete', array($params));
|
||||
}
|
||||
/**
|
||||
* Gets a Notice by id. (notices.get)
|
||||
*
|
||||
* @param string $noticesId The Notice id.
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Reportcard_Notice
|
||||
*/
|
||||
public function get($noticesId, $optParams = array())
|
||||
{
|
||||
$params = array('noticesId' => $noticesId);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('get', array($params), "Google_Service_Reportcard_Notice");
|
||||
}
|
||||
/**
|
||||
* Inserts a new Notice. (notices.insert)
|
||||
*
|
||||
* @param Google_Service_Reportcard_Notice $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Reportcard_Notice
|
||||
*/
|
||||
public function insert(Google_Service_Reportcard_Notice $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('insert', array($params), "Google_Service_Reportcard_Notice");
|
||||
}
|
||||
/**
|
||||
* Retrieves a list of Notices, filtering by 'consumer' and maybe hiding muted
|
||||
* ones. (notices.listNotices)
|
||||
*
|
||||
* @param array $optParams Optional parameters.
|
||||
*
|
||||
* @opt_param string consumer Only return Notices for these consumers
|
||||
* @opt_param bool showMuted If set, show Notices that have been muted.
|
||||
* @return Google_Service_Reportcard_NoticesListResponse
|
||||
*/
|
||||
public function listNotices($optParams = array())
|
||||
{
|
||||
$params = array();
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('list', array($params), "Google_Service_Reportcard_NoticesListResponse");
|
||||
}
|
||||
/**
|
||||
* Updates an existing Notice. This method supports patch semantics.
|
||||
* (notices.patch)
|
||||
*
|
||||
* @param string $noticesId The Notice id.
|
||||
* @param Google_Service_Reportcard_Notice $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Reportcard_Notice
|
||||
*/
|
||||
public function patch($noticesId, Google_Service_Reportcard_Notice $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('noticesId' => $noticesId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('patch', array($params), "Google_Service_Reportcard_Notice");
|
||||
}
|
||||
/**
|
||||
* Updates an existing Notice. (notices.update)
|
||||
*
|
||||
* @param string $noticesId The Notice id.
|
||||
* @param Google_Service_Reportcard_Notice $postBody
|
||||
* @param array $optParams Optional parameters.
|
||||
* @return Google_Service_Reportcard_Notice
|
||||
*/
|
||||
public function update($noticesId, Google_Service_Reportcard_Notice $postBody, $optParams = array())
|
||||
{
|
||||
$params = array('noticesId' => $noticesId, 'postBody' => $postBody);
|
||||
$params = array_merge($params, $optParams);
|
||||
return $this->call('update', array($params), "Google_Service_Reportcard_Notice");
|
||||
}
|
||||
}
|
||||
84
vendor/google/apiclient-services/src/Google/Service/Reportcard/Target.php
vendored
Normal file
84
vendor/google/apiclient-services/src/Google/Service/Reportcard/Target.php
vendored
Normal file
@@ -0,0 +1,84 @@
|
||||
<?php
|
||||
/*
|
||||
* Copyright 2014 Google Inc.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
||||
* use this file except in compliance with the License. You may obtain a copy of
|
||||
* the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
||||
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
||||
* License for the specific language governing permissions and limitations under
|
||||
* the License.
|
||||
*/
|
||||
|
||||
class Google_Service_Reportcard_Target extends Google_Model
|
||||
{
|
||||
public $documentationUrl;
|
||||
public $kind;
|
||||
public $location;
|
||||
public $monitoringUrl;
|
||||
public $note;
|
||||
public $reportUrl;
|
||||
public $type;
|
||||
|
||||
public function setDocumentationUrl($documentationUrl)
|
||||
{
|
||||
$this->documentationUrl = $documentationUrl;
|
||||
}
|
||||
public function getDocumentationUrl()
|
||||
{
|
||||
return $this->documentationUrl;
|
||||
}
|
||||
public function setKind($kind)
|
||||
{
|
||||
$this->kind = $kind;
|
||||
}
|
||||
public function getKind()
|
||||
{
|
||||
return $this->kind;
|
||||
}
|
||||
public function setLocation($location)
|
||||
{
|
||||
$this->location = $location;
|
||||
}
|
||||
public function getLocation()
|
||||
{
|
||||
return $this->location;
|
||||
}
|
||||
public function setMonitoringUrl($monitoringUrl)
|
||||
{
|
||||
$this->monitoringUrl = $monitoringUrl;
|
||||
}
|
||||
public function getMonitoringUrl()
|
||||
{
|
||||
return $this->monitoringUrl;
|
||||
}
|
||||
public function setNote($note)
|
||||
{
|
||||
$this->note = $note;
|
||||
}
|
||||
public function getNote()
|
||||
{
|
||||
return $this->note;
|
||||
}
|
||||
public function setReportUrl($reportUrl)
|
||||
{
|
||||
$this->reportUrl = $reportUrl;
|
||||
}
|
||||
public function getReportUrl()
|
||||
{
|
||||
return $this->reportUrl;
|
||||
}
|
||||
public function setType($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
public function getType()
|
||||
{
|
||||
return $this->type;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user