line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Google::Ads::AdWords::v201702::LocationCriterion; |
2
|
1
|
|
|
1
|
|
693
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
37
|
|
3
|
1
|
|
|
1
|
|
10
|
use warnings; |
|
1
|
|
|
|
|
13
|
|
|
1
|
|
|
|
|
120
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->_set_element_form_qualified(1); |
7
|
|
|
|
|
|
|
|
8
|
0
|
|
|
0
|
|
|
sub get_xmlns { 'https://adwords.google.com/api/adwords/cm/v201702' }; |
9
|
|
|
|
|
|
|
|
10
|
|
|
|
|
|
|
our $XML_ATTRIBUTE_CLASS; |
11
|
|
|
|
|
|
|
undef $XML_ATTRIBUTE_CLASS; |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
sub __get_attr_class { |
14
|
0
|
|
|
0
|
|
|
return $XML_ATTRIBUTE_CLASS; |
15
|
|
|
|
|
|
|
} |
16
|
|
|
|
|
|
|
|
17
|
1
|
|
|
1
|
|
10
|
use Class::Std::Fast::Storable constructor => 'none'; |
|
1
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
9
|
|
18
|
1
|
|
|
1
|
|
157
|
use base qw(Google::Ads::SOAP::Typelib::ComplexType); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
62
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
{ # BLOCK to scope variables |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
my %location_of :ATTR(:get); |
23
|
|
|
|
|
|
|
my %canonicalName_of :ATTR(:get); |
24
|
|
|
|
|
|
|
my %reach_of :ATTR(:get); |
25
|
|
|
|
|
|
|
my %locale_of :ATTR(:get); |
26
|
|
|
|
|
|
|
my %searchTerm_of :ATTR(:get); |
27
|
|
|
|
|
|
|
my %countryCode_of :ATTR(:get); |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__PACKAGE__->_factory( |
30
|
|
|
|
|
|
|
[ qw( location |
31
|
|
|
|
|
|
|
canonicalName |
32
|
|
|
|
|
|
|
reach |
33
|
|
|
|
|
|
|
locale |
34
|
|
|
|
|
|
|
searchTerm |
35
|
|
|
|
|
|
|
countryCode |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
) ], |
38
|
|
|
|
|
|
|
{ |
39
|
|
|
|
|
|
|
'location' => \%location_of, |
40
|
|
|
|
|
|
|
'canonicalName' => \%canonicalName_of, |
41
|
|
|
|
|
|
|
'reach' => \%reach_of, |
42
|
|
|
|
|
|
|
'locale' => \%locale_of, |
43
|
|
|
|
|
|
|
'searchTerm' => \%searchTerm_of, |
44
|
|
|
|
|
|
|
'countryCode' => \%countryCode_of, |
45
|
|
|
|
|
|
|
}, |
46
|
|
|
|
|
|
|
{ |
47
|
|
|
|
|
|
|
'location' => 'Google::Ads::AdWords::v201702::Location', |
48
|
|
|
|
|
|
|
'canonicalName' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
49
|
|
|
|
|
|
|
'reach' => 'SOAP::WSDL::XSD::Typelib::Builtin::long', |
50
|
|
|
|
|
|
|
'locale' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
51
|
|
|
|
|
|
|
'searchTerm' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
52
|
|
|
|
|
|
|
'countryCode' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
53
|
|
|
|
|
|
|
}, |
54
|
|
|
|
|
|
|
{ |
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
'location' => 'location', |
57
|
|
|
|
|
|
|
'canonicalName' => 'canonicalName', |
58
|
|
|
|
|
|
|
'reach' => 'reach', |
59
|
|
|
|
|
|
|
'locale' => 'locale', |
60
|
|
|
|
|
|
|
'searchTerm' => 'searchTerm', |
61
|
|
|
|
|
|
|
'countryCode' => 'countryCode', |
62
|
|
|
|
|
|
|
} |
63
|
|
|
|
|
|
|
); |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
} # end BLOCK |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
1; |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=pod |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
=head1 NAME |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
Google::Ads::AdWords::v201702::LocationCriterion |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=head1 DESCRIPTION |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
Perl data type class for the XML Schema defined complexType |
85
|
|
|
|
|
|
|
LocationCriterion from the namespace https://adwords.google.com/api/adwords/cm/v201702. |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
Represents data that encapsulates a location criterion. |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
=head2 PROPERTIES |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
The following properties may be accessed using get_PROPERTY / set_PROPERTY |
95
|
|
|
|
|
|
|
methods: |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=over |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
=item * location |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
=item * canonicalName |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
=item * reach |
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
=item * locale |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
=item * searchTerm |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
|
114
|
|
|
|
|
|
|
=item * countryCode |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
|
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
=back |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
=head1 METHODS |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
=head2 new |
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
Constructor. The following data structure may be passed to new(): |
127
|
|
|
|
|
|
|
|
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
|
133
|
|
|
|
|
|
|
=head1 AUTHOR |
134
|
|
|
|
|
|
|
|
135
|
|
|
|
|
|
|
Generated by SOAP::WSDL |
136
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
=cut |
138
|
|
|
|
|
|
|
|