line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Google::Ads::AdWords::v201710::UserListPage; |
2
|
1
|
|
|
1
|
|
1896
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
24
|
|
3
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
78
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
__PACKAGE__->_set_element_form_qualified(1); |
7
|
|
|
|
|
|
|
|
8
|
0
|
|
|
0
|
|
|
sub get_xmlns { 'https://adwords.google.com/api/adwords/rm/v201710' }; |
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
|
|
|
|
|
|
|
|
18
|
1
|
|
|
1
|
|
5
|
use base qw(Google::Ads::AdWords::v201710::Page); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
94
|
|
19
|
|
|
|
|
|
|
# Variety: sequence |
20
|
|
|
|
|
|
|
use Class::Std::Fast::Storable constructor => 'none'; |
21
|
|
|
|
|
|
|
use base qw(Google::Ads::SOAP::Typelib::ComplexType); |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
{ # BLOCK to scope variables |
24
|
|
|
|
|
|
|
|
25
|
|
|
|
|
|
|
my %totalNumEntries_of :ATTR(:get); |
26
|
|
|
|
|
|
|
my %Page__Type_of :ATTR(:get); |
27
|
|
|
|
|
|
|
my %entries_of :ATTR(:get); |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
__PACKAGE__->_factory( |
30
|
|
|
|
|
|
|
[ qw( totalNumEntries |
31
|
|
|
|
|
|
|
Page__Type |
32
|
|
|
|
|
|
|
entries |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
) ], |
35
|
|
|
|
|
|
|
{ |
36
|
|
|
|
|
|
|
'totalNumEntries' => \%totalNumEntries_of, |
37
|
|
|
|
|
|
|
'Page__Type' => \%Page__Type_of, |
38
|
|
|
|
|
|
|
'entries' => \%entries_of, |
39
|
|
|
|
|
|
|
}, |
40
|
|
|
|
|
|
|
{ |
41
|
|
|
|
|
|
|
'totalNumEntries' => 'SOAP::WSDL::XSD::Typelib::Builtin::int', |
42
|
|
|
|
|
|
|
'Page__Type' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
43
|
|
|
|
|
|
|
'entries' => 'Google::Ads::AdWords::v201710::UserList', |
44
|
|
|
|
|
|
|
}, |
45
|
|
|
|
|
|
|
{ |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
'totalNumEntries' => 'totalNumEntries', |
48
|
|
|
|
|
|
|
'Page__Type' => 'Page.Type', |
49
|
|
|
|
|
|
|
'entries' => 'entries', |
50
|
|
|
|
|
|
|
} |
51
|
|
|
|
|
|
|
); |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
} # end BLOCK |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
|
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
1; |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
|
64
|
|
|
|
|
|
|
=pod |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
=head1 NAME |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
Google::Ads::AdWords::v201710::UserListPage |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
=head1 DESCRIPTION |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
Perl data type class for the XML Schema defined complexType |
73
|
|
|
|
|
|
|
UserListPage from the namespace https://adwords.google.com/api/adwords/rm/v201710. |
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
Contains a list of user lists resulting from the filtering and paging of the {@link UserListService#get} call. |
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
|
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
=head2 PROPERTIES |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
The following properties may be accessed using get_PROPERTY / set_PROPERTY |
83
|
|
|
|
|
|
|
methods: |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
=over |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=item * entries |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
|
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
=back |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
=head1 METHODS |
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=head2 new |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
Constructor. The following data structure may be passed to new(): |
100
|
|
|
|
|
|
|
|
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
|
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
|
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
=head1 AUTHOR |
107
|
|
|
|
|
|
|
|
108
|
|
|
|
|
|
|
Generated by SOAP::WSDL |
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
=cut |
111
|
|
|
|
|
|
|
|