File Coverage

lib/Google/Ads/AdWords/v201702/ManagedCustomer.pm
Criterion Covered Total %
statement 12 14 85.7
branch n/a
condition n/a
subroutine 4 6 66.6
pod n/a
total 16 20 80.0


line stmt bran cond sub pod time code
1             package Google::Ads::AdWords::v201702::ManagedCustomer;
2 1     1   2637 use strict;
  1         3  
  1         31  
3 1     1   4 use warnings;
  1         2  
  1         110  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8 0     0     sub get_xmlns { 'https://adwords.google.com/api/adwords/mcm/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   9 use Class::Std::Fast::Storable constructor => 'none';
  1         4  
  1         15  
18 1     1   173 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         4  
  1         171  
19              
20             { # BLOCK to scope variables
21              
22             my %name_of :ATTR(:get);
23             my %customerId_of :ATTR(:get);
24             my %canManageClients_of :ATTR(:get);
25             my %currencyCode_of :ATTR(:get);
26             my %dateTimeZone_of :ATTR(:get);
27             my %testAccount_of :ATTR(:get);
28             my %accountLabels_of :ATTR(:get);
29             my %excludeHiddenAccounts_of :ATTR(:get);
30              
31             __PACKAGE__->_factory(
32             [ qw( name
33             customerId
34             canManageClients
35             currencyCode
36             dateTimeZone
37             testAccount
38             accountLabels
39             excludeHiddenAccounts
40              
41             ) ],
42             {
43             'name' => \%name_of,
44             'customerId' => \%customerId_of,
45             'canManageClients' => \%canManageClients_of,
46             'currencyCode' => \%currencyCode_of,
47             'dateTimeZone' => \%dateTimeZone_of,
48             'testAccount' => \%testAccount_of,
49             'accountLabels' => \%accountLabels_of,
50             'excludeHiddenAccounts' => \%excludeHiddenAccounts_of,
51             },
52             {
53             'name' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
54             'customerId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
55             'canManageClients' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
56             'currencyCode' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
57             'dateTimeZone' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
58             'testAccount' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
59             'accountLabels' => 'Google::Ads::AdWords::v201702::AccountLabel',
60             'excludeHiddenAccounts' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
61             },
62             {
63              
64             'name' => 'name',
65             'customerId' => 'customerId',
66             'canManageClients' => 'canManageClients',
67             'currencyCode' => 'currencyCode',
68             'dateTimeZone' => 'dateTimeZone',
69             'testAccount' => 'testAccount',
70             'accountLabels' => 'accountLabels',
71             'excludeHiddenAccounts' => 'excludeHiddenAccounts',
72             }
73             );
74              
75             } # end BLOCK
76              
77              
78              
79              
80              
81              
82              
83             1;
84              
85              
86             =pod
87              
88             =head1 NAME
89              
90             Google::Ads::AdWords::v201702::ManagedCustomer
91              
92             =head1 DESCRIPTION
93              
94             Perl data type class for the XML Schema defined complexType
95             ManagedCustomer from the namespace https://adwords.google.com/api/adwords/mcm/v201702.
96              
97             Data object that represents a managed customer. Member of {@link ManagedCustomerPage}.
98              
99              
100              
101              
102             =head2 PROPERTIES
103              
104             The following properties may be accessed using get_PROPERTY / set_PROPERTY
105             methods:
106              
107             =over
108              
109             =item * name
110              
111              
112             =item * customerId
113              
114              
115             =item * canManageClients
116              
117              
118             =item * currencyCode
119              
120              
121             =item * dateTimeZone
122              
123              
124             =item * testAccount
125              
126              
127             =item * accountLabels
128              
129              
130             =item * excludeHiddenAccounts
131              
132              
133              
134              
135             =back
136              
137              
138             =head1 METHODS
139              
140             =head2 new
141              
142             Constructor. The following data structure may be passed to new():
143              
144              
145              
146              
147              
148              
149             =head1 AUTHOR
150              
151             Generated by SOAP::WSDL
152              
153             =cut
154