line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Google::Ads::AdWords::v201702::Address; |
2
|
1
|
|
|
1
|
|
1840
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
32
|
|
3
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
82
|
|
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
|
|
|
|
|
3
|
|
|
1
|
|
|
|
|
6
|
|
18
|
1
|
|
|
1
|
|
129
|
use base qw(Google::Ads::SOAP::Typelib::ComplexType); |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
65
|
|
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
{ # BLOCK to scope variables |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
my %streetAddress_of :ATTR(:get); |
23
|
|
|
|
|
|
|
my %streetAddress2_of :ATTR(:get); |
24
|
|
|
|
|
|
|
my %cityName_of :ATTR(:get); |
25
|
|
|
|
|
|
|
my %provinceCode_of :ATTR(:get); |
26
|
|
|
|
|
|
|
my %provinceName_of :ATTR(:get); |
27
|
|
|
|
|
|
|
my %postalCode_of :ATTR(:get); |
28
|
|
|
|
|
|
|
my %countryCode_of :ATTR(:get); |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
__PACKAGE__->_factory( |
31
|
|
|
|
|
|
|
[ qw( streetAddress |
32
|
|
|
|
|
|
|
streetAddress2 |
33
|
|
|
|
|
|
|
cityName |
34
|
|
|
|
|
|
|
provinceCode |
35
|
|
|
|
|
|
|
provinceName |
36
|
|
|
|
|
|
|
postalCode |
37
|
|
|
|
|
|
|
countryCode |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
) ], |
40
|
|
|
|
|
|
|
{ |
41
|
|
|
|
|
|
|
'streetAddress' => \%streetAddress_of, |
42
|
|
|
|
|
|
|
'streetAddress2' => \%streetAddress2_of, |
43
|
|
|
|
|
|
|
'cityName' => \%cityName_of, |
44
|
|
|
|
|
|
|
'provinceCode' => \%provinceCode_of, |
45
|
|
|
|
|
|
|
'provinceName' => \%provinceName_of, |
46
|
|
|
|
|
|
|
'postalCode' => \%postalCode_of, |
47
|
|
|
|
|
|
|
'countryCode' => \%countryCode_of, |
48
|
|
|
|
|
|
|
}, |
49
|
|
|
|
|
|
|
{ |
50
|
|
|
|
|
|
|
'streetAddress' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
51
|
|
|
|
|
|
|
'streetAddress2' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
52
|
|
|
|
|
|
|
'cityName' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
53
|
|
|
|
|
|
|
'provinceCode' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
54
|
|
|
|
|
|
|
'provinceName' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
55
|
|
|
|
|
|
|
'postalCode' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
56
|
|
|
|
|
|
|
'countryCode' => 'SOAP::WSDL::XSD::Typelib::Builtin::string', |
57
|
|
|
|
|
|
|
}, |
58
|
|
|
|
|
|
|
{ |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
'streetAddress' => 'streetAddress', |
61
|
|
|
|
|
|
|
'streetAddress2' => 'streetAddress2', |
62
|
|
|
|
|
|
|
'cityName' => 'cityName', |
63
|
|
|
|
|
|
|
'provinceCode' => 'provinceCode', |
64
|
|
|
|
|
|
|
'provinceName' => 'provinceName', |
65
|
|
|
|
|
|
|
'postalCode' => 'postalCode', |
66
|
|
|
|
|
|
|
'countryCode' => 'countryCode', |
67
|
|
|
|
|
|
|
} |
68
|
|
|
|
|
|
|
); |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
} # end BLOCK |
71
|
|
|
|
|
|
|
|
72
|
|
|
|
|
|
|
|
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
|
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
1; |
79
|
|
|
|
|
|
|
|
80
|
|
|
|
|
|
|
|
81
|
|
|
|
|
|
|
=pod |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
=head1 NAME |
84
|
|
|
|
|
|
|
|
85
|
|
|
|
|
|
|
Google::Ads::AdWords::v201702::Address |
86
|
|
|
|
|
|
|
|
87
|
|
|
|
|
|
|
=head1 DESCRIPTION |
88
|
|
|
|
|
|
|
|
89
|
|
|
|
|
|
|
Perl data type class for the XML Schema defined complexType |
90
|
|
|
|
|
|
|
Address from the namespace https://adwords.google.com/api/adwords/cm/v201702. |
91
|
|
|
|
|
|
|
|
92
|
|
|
|
|
|
|
Structure to specify an address location. |
93
|
|
|
|
|
|
|
|
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
|
97
|
|
|
|
|
|
|
=head2 PROPERTIES |
98
|
|
|
|
|
|
|
|
99
|
|
|
|
|
|
|
The following properties may be accessed using get_PROPERTY / set_PROPERTY |
100
|
|
|
|
|
|
|
methods: |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
=over |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
=item * streetAddress |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
|
107
|
|
|
|
|
|
|
=item * streetAddress2 |
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
=item * cityName |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
|
113
|
|
|
|
|
|
|
=item * provinceCode |
114
|
|
|
|
|
|
|
|
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
=item * provinceName |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
|
119
|
|
|
|
|
|
|
=item * postalCode |
120
|
|
|
|
|
|
|
|
121
|
|
|
|
|
|
|
|
122
|
|
|
|
|
|
|
=item * countryCode |
123
|
|
|
|
|
|
|
|
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
|
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
=back |
128
|
|
|
|
|
|
|
|
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
=head1 METHODS |
131
|
|
|
|
|
|
|
|
132
|
|
|
|
|
|
|
=head2 new |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
Constructor. The following data structure may be passed to new(): |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
|
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
|
139
|
|
|
|
|
|
|
|
140
|
|
|
|
|
|
|
|
141
|
|
|
|
|
|
|
=head1 AUTHOR |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
Generated by SOAP::WSDL |
144
|
|
|
|
|
|
|
|
145
|
|
|
|
|
|
|
=cut |
146
|
|
|
|
|
|
|
|