1 | <?php
|
---|
2 | /*
|
---|
3 | * Copyright 2014 Google Inc.
|
---|
4 | *
|
---|
5 | * Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
---|
6 | * use this file except in compliance with the License. You may obtain a copy of
|
---|
7 | * the License at
|
---|
8 | *
|
---|
9 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
10 | *
|
---|
11 | * Unless required by applicable law or agreed to in writing, software
|
---|
12 | * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
---|
13 | * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
---|
14 | * License for the specific language governing permissions and limitations under
|
---|
15 | * the License.
|
---|
16 | */
|
---|
17 |
|
---|
18 | namespace Google\Service\SA360;
|
---|
19 |
|
---|
20 | class GoogleAdsSearchads360V0ResourcesAdGroupBidModifier extends \Google\Model
|
---|
21 | {
|
---|
22 | public $bidModifier;
|
---|
23 | protected $deviceType = GoogleAdsSearchads360V0CommonDeviceInfo::class;
|
---|
24 | protected $deviceDataType = '';
|
---|
25 | /**
|
---|
26 | * @var string
|
---|
27 | */
|
---|
28 | public $resourceName;
|
---|
29 |
|
---|
30 | public function setBidModifier($bidModifier)
|
---|
31 | {
|
---|
32 | $this->bidModifier = $bidModifier;
|
---|
33 | }
|
---|
34 | public function getBidModifier()
|
---|
35 | {
|
---|
36 | return $this->bidModifier;
|
---|
37 | }
|
---|
38 | /**
|
---|
39 | * @param GoogleAdsSearchads360V0CommonDeviceInfo
|
---|
40 | */
|
---|
41 | public function setDevice(GoogleAdsSearchads360V0CommonDeviceInfo $device)
|
---|
42 | {
|
---|
43 | $this->device = $device;
|
---|
44 | }
|
---|
45 | /**
|
---|
46 | * @return GoogleAdsSearchads360V0CommonDeviceInfo
|
---|
47 | */
|
---|
48 | public function getDevice()
|
---|
49 | {
|
---|
50 | return $this->device;
|
---|
51 | }
|
---|
52 | /**
|
---|
53 | * @param string
|
---|
54 | */
|
---|
55 | public function setResourceName($resourceName)
|
---|
56 | {
|
---|
57 | $this->resourceName = $resourceName;
|
---|
58 | }
|
---|
59 | /**
|
---|
60 | * @return string
|
---|
61 | */
|
---|
62 | public function getResourceName()
|
---|
63 | {
|
---|
64 | return $this->resourceName;
|
---|
65 | }
|
---|
66 | }
|
---|
67 |
|
---|
68 | // Adding a class alias for backwards compatibility with the previous class name.
|
---|
69 | class_alias(GoogleAdsSearchads360V0ResourcesAdGroupBidModifier::class, 'Google_Service_SA360_GoogleAdsSearchads360V0ResourcesAdGroupBidModifier');
|
---|