golden hour
/home/doctorbruno/.trash/google-site-kit/third-party/google/apiclient-services/src/Adsense
⬆️ Go Up
Upload
File/Folder
Size
Actions
Account.php
3.21 KB
Del
OK
AdBlockingRecoveryTag.php
1.61 KB
Del
OK
AdClient.php
2.18 KB
Del
OK
AdClientAdCode.php
1.82 KB
Del
OK
AdUnit.php
2.73 KB
Del
OK
AdUnitAdCode.php
1.23 KB
Del
OK
AdsenseEmpty.php
976 B
Del
OK
Alert.php
2.05 KB
Del
OK
Cell.php
1.2 KB
Del
OK
ContentAdsSettings.php
1.51 KB
Del
OK
CustomChannel.php
2.19 KB
Del
OK
Date.php
1.71 KB
Del
OK
Header.php
1.79 KB
Del
OK
HttpBody.php
1.89 KB
Del
OK
ListAccountsResponse.php
1.74 KB
Del
OK
ListAdClientsResponse.php
1.75 KB
Del
OK
ListAdUnitsResponse.php
1.72 KB
Del
OK
ListAlertsResponse.php
1.38 KB
Del
OK
ListChildAccountsResponse.php
1.75 KB
Del
OK
ListCustomChannelsResponse.php
1.83 KB
Del
OK
ListLinkedAdUnitsResponse.php
1.74 KB
Del
OK
ListLinkedCustomChannelsResponse.php
1.84 KB
Del
OK
ListPaymentsResponse.php
1.41 KB
Del
OK
ListPolicyIssuesResponse.php
1.8 KB
Del
OK
ListSavedReportsResponse.php
1.8 KB
Del
OK
ListSitesResponse.php
1.69 KB
Del
OK
ListUrlChannelsResponse.php
1.78 KB
Del
OK
Payment.php
1.88 KB
Del
OK
PolicyIssue.php
5.28 KB
Del
OK
PolicyTopic.php
1.51 KB
Del
OK
ReportResult.php
4.03 KB
Del
OK
Resource
-
Del
OK
Row.php
1.32 KB
Del
OK
SavedReport.php
1.49 KB
Del
OK
Site.php
2.46 KB
Del
OK
TimeZone.php
1.48 KB
Del
OK
UrlChannel.php
1.9 KB
Del
OK
Edit: PolicyIssue.php
<?php /* * Copyright 2014 Google Inc. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not * use this file except in compliance with the License. You may obtain a copy of * the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the * License for the specific language governing permissions and limitations under * the License. */ namespace Google\Site_Kit_Dependencies\Google\Service\Adsense; class PolicyIssue extends \Google\Site_Kit_Dependencies\Google\Collection { protected $collection_key = 'policyTopics'; /** * @var string */ public $action; /** * @var string[] */ public $adClients; /** * @var string */ public $adRequestCount; /** * @var string */ public $entityType; protected $firstDetectedDateType = \Google\Site_Kit_Dependencies\Google\Service\Adsense\Date::class; protected $firstDetectedDateDataType = ''; protected $lastDetectedDateType = \Google\Site_Kit_Dependencies\Google\Service\Adsense\Date::class; protected $lastDetectedDateDataType = ''; /** * @var string */ public $name; protected $policyTopicsType = \Google\Site_Kit_Dependencies\Google\Service\Adsense\PolicyTopic::class; protected $policyTopicsDataType = 'array'; /** * @var string */ public $site; /** * @var string */ public $siteSection; /** * @var string */ public $uri; protected $warningEscalationDateType = \Google\Site_Kit_Dependencies\Google\Service\Adsense\Date::class; protected $warningEscalationDateDataType = ''; /** * @param string */ public function setAction($action) { $this->action = $action; } /** * @return string */ public function getAction() { return $this->action; } /** * @param string[] */ public function setAdClients($adClients) { $this->adClients = $adClients; } /** * @return string[] */ public function getAdClients() { return $this->adClients; } /** * @param string */ public function setAdRequestCount($adRequestCount) { $this->adRequestCount = $adRequestCount; } /** * @return string */ public function getAdRequestCount() { return $this->adRequestCount; } /** * @param string */ public function setEntityType($entityType) { $this->entityType = $entityType; } /** * @return string */ public function getEntityType() { return $this->entityType; } /** * @param Date */ public function setFirstDetectedDate(\Google\Site_Kit_Dependencies\Google\Service\Adsense\Date $firstDetectedDate) { $this->firstDetectedDate = $firstDetectedDate; } /** * @return Date */ public function getFirstDetectedDate() { return $this->firstDetectedDate; } /** * @param Date */ public function setLastDetectedDate(\Google\Site_Kit_Dependencies\Google\Service\Adsense\Date $lastDetectedDate) { $this->lastDetectedDate = $lastDetectedDate; } /** * @return Date */ public function getLastDetectedDate() { return $this->lastDetectedDate; } /** * @param string */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * @param PolicyTopic[] */ public function setPolicyTopics($policyTopics) { $this->policyTopics = $policyTopics; } /** * @return PolicyTopic[] */ public function getPolicyTopics() { return $this->policyTopics; } /** * @param string */ public function setSite($site) { $this->site = $site; } /** * @return string */ public function getSite() { return $this->site; } /** * @param string */ public function setSiteSection($siteSection) { $this->siteSection = $siteSection; } /** * @return string */ public function getSiteSection() { return $this->siteSection; } /** * @param string */ public function setUri($uri) { $this->uri = $uri; } /** * @return string */ public function getUri() { return $this->uri; } /** * @param Date */ public function setWarningEscalationDate(\Google\Site_Kit_Dependencies\Google\Service\Adsense\Date $warningEscalationDate) { $this->warningEscalationDate = $warningEscalationDate; } /** * @return Date */ public function getWarningEscalationDate() { return $this->warningEscalationDate; } } // Adding a class alias for backwards compatibility with the previous class name. \class_alias(\Google\Site_Kit_Dependencies\Google\Service\Adsense\PolicyIssue::class, 'Google\\Site_Kit_Dependencies\\Google_Service_Adsense_PolicyIssue');
Save