line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Google::Ads::AdWords::v201702::AdGroupAdLabel; |
2
|
1
|
|
|
1
|
|
1766
|
use strict; |
|
1
|
|
|
|
|
4
|
|
|
1
|
|
|
|
|
44
|
|
3
|
1
|
|
|
1
|
|
7
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
79
|
|
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
|
|
6
|
use Class::Std::Fast::Storable constructor => 'none'; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
7
|
|
18
|
1
|
|
|
1
|
|
165
|
use base qw(Google::Ads::SOAP::Typelib::ComplexType); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
101
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
{ # BLOCK to scope variables |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
my %adGroupId_of :ATTR(:get); |
23
|
|
|
|
|
|
|
my %adId_of :ATTR(:get); |
24
|
|
|
|
|
|
|
my %labelId_of :ATTR(:get); |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
__PACKAGE__->_factory( |
27
|
|
|
|
|
|
|
[ qw( adGroupId |
28
|
|
|
|
|
|
|
adId |
29
|
|
|
|
|
|
|
labelId |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
) ], |
32
|
|
|
|
|
|
|
{ |
33
|
|
|
|
|
|
|
'adGroupId' => \%adGroupId_of, |
34
|
|
|
|
|
|
|
'adId' => \%adId_of, |
35
|
|
|
|
|
|
|
'labelId' => \%labelId_of, |
36
|
|
|
|
|
|
|
}, |
37
|
|
|
|
|
|
|
{ |
38
|
|
|
|
|
|
|
'adGroupId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long', |
39
|
|
|
|
|
|
|
'adId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long', |
40
|
|
|
|
|
|
|
'labelId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long', |
41
|
|
|
|
|
|
|
}, |
42
|
|
|
|
|
|
|
{ |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
'adGroupId' => 'adGroupId', |
45
|
|
|
|
|
|
|
'adId' => 'adId', |
46
|
|
|
|
|
|
|
'labelId' => 'labelId', |
47
|
|
|
|
|
|
|
} |
48
|
|
|
|
|
|
|
); |
49
|
|
|
|
|
|
|
|
50
|
|
|
|
|
|
|
} # end BLOCK |
51
|
|
|
|
|
|
|
|
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
1; |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=pod |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
=head1 NAME |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
Google::Ads::AdWords::v201702::AdGroupAdLabel |
66
|
|
|
|
|
|
|
|
67
|
|
|
|
|
|
|
=head1 DESCRIPTION |
68
|
|
|
|
|
|
|
|
69
|
|
|
|
|
|
|
Perl data type class for the XML Schema defined complexType |
70
|
|
|
|
|
|
|
AdGroupAdLabel from the namespace https://adwords.google.com/api/adwords/cm/v201702. |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Manages the labels associated with an AdGroupAd. |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
=head2 PROPERTIES |
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
The following properties may be accessed using get_PROPERTY / set_PROPERTY |
80
|
|
|
|
|
|
|
methods: |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
=over |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=item * adGroupId |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=item * adId |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
=item * labelId |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
=back |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
|
98
|
|
|
|
|
|
|
=head1 METHODS |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
=head2 new |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
Constructor. The following data structure may be passed to new(): |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
=head1 AUTHOR |
110
|
|
|
|
|
|
|
|
111
|
|
|
|
|
|
|
Generated by SOAP::WSDL |
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
=cut |
114
|
|
|
|
|
|
|
|