99 lines
2.3 KiB
PHP
Executable File
99 lines
2.3 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 GoogleAdsSearchads360V0ResourcesCampaignNetworkSettings extends \Google\Model
|
|
{
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $targetContentNetwork;
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $targetGoogleSearch;
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $targetPartnerSearchNetwork;
|
|
/**
|
|
* @var bool
|
|
*/
|
|
public $targetSearchNetwork;
|
|
|
|
/**
|
|
* @param bool
|
|
*/
|
|
public function setTargetContentNetwork($targetContentNetwork)
|
|
{
|
|
$this->targetContentNetwork = $targetContentNetwork;
|
|
}
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function getTargetContentNetwork()
|
|
{
|
|
return $this->targetContentNetwork;
|
|
}
|
|
/**
|
|
* @param bool
|
|
*/
|
|
public function setTargetGoogleSearch($targetGoogleSearch)
|
|
{
|
|
$this->targetGoogleSearch = $targetGoogleSearch;
|
|
}
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function getTargetGoogleSearch()
|
|
{
|
|
return $this->targetGoogleSearch;
|
|
}
|
|
/**
|
|
* @param bool
|
|
*/
|
|
public function setTargetPartnerSearchNetwork($targetPartnerSearchNetwork)
|
|
{
|
|
$this->targetPartnerSearchNetwork = $targetPartnerSearchNetwork;
|
|
}
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function getTargetPartnerSearchNetwork()
|
|
{
|
|
return $this->targetPartnerSearchNetwork;
|
|
}
|
|
/**
|
|
* @param bool
|
|
*/
|
|
public function setTargetSearchNetwork($targetSearchNetwork)
|
|
{
|
|
$this->targetSearchNetwork = $targetSearchNetwork;
|
|
}
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function getTargetSearchNetwork()
|
|
{
|
|
return $this->targetSearchNetwork;
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(GoogleAdsSearchads360V0ResourcesCampaignNetworkSettings::class, 'Google_Service_SA360_GoogleAdsSearchads360V0ResourcesCampaignNetworkSettings');
|