siip-whatsapp-notifications.../vendor/google/apiclient-services/src/SA360/GoogleAdsSearchads360V0ResourcesAdGroup.php
2024-12-31 09:48:29 +00:00

314 lines
5.4 KiB
PHP
Executable File

<?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\Service\SA360;
class GoogleAdsSearchads360V0ResourcesAdGroup extends \Google\Collection
{
protected $collection_key = 'labels';
/**
* @var string
*/
public $adRotationMode;
/**
* @var string
*/
public $cpcBidMicros;
/**
* @var string
*/
public $creationTime;
/**
* @var string
*/
public $endDate;
/**
* @var string
*/
public $engineId;
/**
* @var string
*/
public $engineStatus;
/**
* @var string
*/
public $id;
/**
* @var string[]
*/
public $labels;
/**
* @var string
*/
public $languageCode;
/**
* @var string
*/
public $lastModifiedTime;
/**
* @var string
*/
public $name;
/**
* @var string
*/
public $resourceName;
/**
* @var string
*/
public $startDate;
/**
* @var string
*/
public $status;
protected $targetingSettingType = GoogleAdsSearchads360V0CommonTargetingSetting::class;
protected $targetingSettingDataType = '';
/**
* @var string
*/
public $type;
/**
* @param string
*/
public function setAdRotationMode($adRotationMode)
{
$this->adRotationMode = $adRotationMode;
}
/**
* @return string
*/
public function getAdRotationMode()
{
return $this->adRotationMode;
}
/**
* @param string
*/
public function setCpcBidMicros($cpcBidMicros)
{
$this->cpcBidMicros = $cpcBidMicros;
}
/**
* @return string
*/
public function getCpcBidMicros()
{
return $this->cpcBidMicros;
}
/**
* @param string
*/
public function setCreationTime($creationTime)
{
$this->creationTime = $creationTime;
}
/**
* @return string
*/
public function getCreationTime()
{
return $this->creationTime;
}
/**
* @param string
*/
public function setEndDate($endDate)
{
$this->endDate = $endDate;
}
/**
* @return string
*/
public function getEndDate()
{
return $this->endDate;
}
/**
* @param string
*/
public function setEngineId($engineId)
{
$this->engineId = $engineId;
}
/**
* @return string
*/
public function getEngineId()
{
return $this->engineId;
}
/**
* @param string
*/
public function setEngineStatus($engineStatus)
{
$this->engineStatus = $engineStatus;
}
/**
* @return string
*/
public function getEngineStatus()
{
return $this->engineStatus;
}
/**
* @param string
*/
public function setId($id)
{
$this->id = $id;
}
/**
* @return string
*/
public function getId()
{
return $this->id;
}
/**
* @param string[]
*/
public function setLabels($labels)
{
$this->labels = $labels;
}
/**
* @return string[]
*/
public function getLabels()
{
return $this->labels;
}
/**
* @param string
*/
public function setLanguageCode($languageCode)
{
$this->languageCode = $languageCode;
}
/**
* @return string
*/
public function getLanguageCode()
{
return $this->languageCode;
}
/**
* @param string
*/
public function setLastModifiedTime($lastModifiedTime)
{
$this->lastModifiedTime = $lastModifiedTime;
}
/**
* @return string
*/
public function getLastModifiedTime()
{
return $this->lastModifiedTime;
}
/**
* @param string
*/
public function setName($name)
{
$this->name = $name;
}
/**
* @return string
*/
public function getName()
{
return $this->name;
}
/**
* @param string
*/
public function setResourceName($resourceName)
{
$this->resourceName = $resourceName;
}
/**
* @return string
*/
public function getResourceName()
{
return $this->resourceName;
}
/**
* @param string
*/
public function setStartDate($startDate)
{
$this->startDate = $startDate;
}
/**
* @return string
*/
public function getStartDate()
{
return $this->startDate;
}
/**
* @param string
*/
public function setStatus($status)
{
$this->status = $status;
}
/**
* @return string
*/
public function getStatus()
{
return $this->status;
}
/**
* @param GoogleAdsSearchads360V0CommonTargetingSetting
*/
public function setTargetingSetting(GoogleAdsSearchads360V0CommonTargetingSetting $targetingSetting)
{
$this->targetingSetting = $targetingSetting;
}
/**
* @return GoogleAdsSearchads360V0CommonTargetingSetting
*/
public function getTargetingSetting()
{
return $this->targetingSetting;
}
/**
* @param string
*/
public function setType($type)
{
$this->type = $type;
}
/**
* @return string
*/
public function getType()
{
return $this->type;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(GoogleAdsSearchads360V0ResourcesAdGroup::class, 'Google_Service_SA360_GoogleAdsSearchads360V0ResourcesAdGroup');