| line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
|
1
|
|
|
|
|
|
|
# Copyright 2020, Google LLC |
|
2
|
|
|
|
|
|
|
# |
|
3
|
|
|
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); |
|
4
|
|
|
|
|
|
|
# you may not use this file except in compliance with the License. |
|
5
|
|
|
|
|
|
|
# You may obtain a copy of the License at |
|
6
|
|
|
|
|
|
|
# |
|
7
|
|
|
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0 |
|
8
|
|
|
|
|
|
|
# |
|
9
|
|
|
|
|
|
|
# Unless required by applicable law or agreed to in writing, software |
|
10
|
|
|
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS, |
|
11
|
|
|
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
|
12
|
|
|
|
|
|
|
# See the License for the specific language governing permissions and |
|
13
|
|
|
|
|
|
|
# limitations under the License. |
|
14
|
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
|
|
16
|
|
|
|
|
|
|
use strict; |
|
17
|
1
|
|
|
1
|
|
667
|
use warnings; |
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
20
|
|
|
18
|
1
|
|
|
1
|
|
4
|
use base qw(Google::Ads::GoogleAds::BaseEntity); |
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
29
|
|
|
19
|
1
|
|
|
1
|
|
5
|
|
|
|
1
|
|
|
|
|
2
|
|
|
|
1
|
|
|
|
|
50
|
|
|
20
|
|
|
|
|
|
|
use Google::Ads::GoogleAds::Utils::GoogleAdsHelper; |
|
21
|
1
|
|
|
1
|
|
4
|
|
|
|
1
|
|
|
|
|
1
|
|
|
|
1
|
|
|
|
|
204
|
|
|
22
|
|
|
|
|
|
|
my ($class, $args) = @_; |
|
23
|
|
|
|
|
|
|
my $self = { |
|
24
|
0
|
|
|
0
|
0
|
|
adRotationMode => $args->{adRotationMode}, |
|
25
|
|
|
|
|
|
|
baseAdGroup => $args->{baseAdGroup}, |
|
26
|
|
|
|
|
|
|
campaign => $args->{campaign}, |
|
27
|
|
|
|
|
|
|
cpcBidMicros => $args->{cpcBidMicros}, |
|
28
|
|
|
|
|
|
|
cpmBidMicros => $args->{cpmBidMicros}, |
|
29
|
|
|
|
|
|
|
cpvBidMicros => $args->{cpvBidMicros}, |
|
30
|
|
|
|
|
|
|
displayCustomBidDimension => $args->{displayCustomBidDimension}, |
|
31
|
|
|
|
|
|
|
effectiveTargetCpaMicros => $args->{effectiveTargetCpaMicros}, |
|
32
|
|
|
|
|
|
|
effectiveTargetCpaSource => $args->{effectiveTargetCpaSource}, |
|
33
|
|
|
|
|
|
|
effectiveTargetRoas => $args->{effectiveTargetRoas}, |
|
34
|
|
|
|
|
|
|
effectiveTargetRoasSource => $args->{effectiveTargetRoasSource}, |
|
35
|
|
|
|
|
|
|
excludedParentAssetFieldTypes => $args->{excludedParentAssetFieldTypes}, |
|
36
|
|
|
|
|
|
|
explorerAutoOptimizerSetting => $args->{explorerAutoOptimizerSetting}, |
|
37
|
|
|
|
|
|
|
finalUrlSuffix => $args->{finalUrlSuffix}, |
|
38
|
|
|
|
|
|
|
id => $args->{id}, |
|
39
|
|
|
|
|
|
|
labels => $args->{labels}, |
|
40
|
|
|
|
|
|
|
name => $args->{name}, |
|
41
|
|
|
|
|
|
|
percentCpcBidMicros => $args->{percentCpcBidMicros}, |
|
42
|
|
|
|
|
|
|
resourceName => $args->{resourceName}, |
|
43
|
|
|
|
|
|
|
status => $args->{status}, |
|
44
|
|
|
|
|
|
|
targetCpaMicros => $args->{targetCpaMicros}, |
|
45
|
|
|
|
|
|
|
targetCpmMicros => $args->{targetCpmMicros}, |
|
46
|
|
|
|
|
|
|
targetRoas => $args->{targetRoas}, |
|
47
|
|
|
|
|
|
|
targetingSetting => $args->{targetingSetting}, |
|
48
|
|
|
|
|
|
|
trackingUrlTemplate => $args->{trackingUrlTemplate}, |
|
49
|
|
|
|
|
|
|
type => $args->{type}, |
|
50
|
|
|
|
|
|
|
urlCustomParameters => $args->{urlCustomParameters}}; |
|
51
|
|
|
|
|
|
|
|
|
52
|
0
|
|
|
|
|
|
# Delete the unassigned fields in this object for a more concise JSON payload |
|
53
|
|
|
|
|
|
|
remove_unassigned_fields($self, $args); |
|
54
|
|
|
|
|
|
|
|
|
55
|
0
|
|
|
|
|
|
bless $self, $class; |
|
56
|
|
|
|
|
|
|
return $self; |
|
57
|
0
|
|
|
|
|
|
} |
|
58
|
0
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
1; |