File Coverage

lib/Google/Ads/AdWords/v201702/ManagedCustomerLink.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::ManagedCustomerLink;
2 1     1   2005 use strict;
  1         2  
  1         31  
3 1     1   4 use warnings;
  1         2  
  1         77  
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   6 use Class::Std::Fast::Storable constructor => 'none';
  1         1  
  1         8  
18 1     1   173 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         1  
  1         102  
19              
20             { # BLOCK to scope variables
21              
22             my %managerCustomerId_of :ATTR(:get);
23             my %clientCustomerId_of :ATTR(:get);
24             my %linkStatus_of :ATTR(:get);
25             my %pendingDescriptiveName_of :ATTR(:get);
26             my %isHidden_of :ATTR(:get);
27              
28             __PACKAGE__->_factory(
29             [ qw( managerCustomerId
30             clientCustomerId
31             linkStatus
32             pendingDescriptiveName
33             isHidden
34              
35             ) ],
36             {
37             'managerCustomerId' => \%managerCustomerId_of,
38             'clientCustomerId' => \%clientCustomerId_of,
39             'linkStatus' => \%linkStatus_of,
40             'pendingDescriptiveName' => \%pendingDescriptiveName_of,
41             'isHidden' => \%isHidden_of,
42             },
43             {
44             'managerCustomerId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
45             'clientCustomerId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
46             'linkStatus' => 'Google::Ads::AdWords::v201702::LinkStatus',
47             'pendingDescriptiveName' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
48             'isHidden' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
49             },
50             {
51              
52             'managerCustomerId' => 'managerCustomerId',
53             'clientCustomerId' => 'clientCustomerId',
54             'linkStatus' => 'linkStatus',
55             'pendingDescriptiveName' => 'pendingDescriptiveName',
56             'isHidden' => 'isHidden',
57             }
58             );
59              
60             } # end BLOCK
61              
62              
63              
64              
65              
66              
67              
68             1;
69              
70              
71             =pod
72              
73             =head1 NAME
74              
75             Google::Ads::AdWords::v201702::ManagedCustomerLink
76              
77             =head1 DESCRIPTION
78              
79             Perl data type class for the XML Schema defined complexType
80             ManagedCustomerLink from the namespace https://adwords.google.com/api/adwords/mcm/v201702.
81              
82             Represents an AdWords manager-client link.
83              
84              
85              
86              
87             =head2 PROPERTIES
88              
89             The following properties may be accessed using get_PROPERTY / set_PROPERTY
90             methods:
91              
92             =over
93              
94             =item * managerCustomerId
95              
96              
97             =item * clientCustomerId
98              
99              
100             =item * linkStatus
101              
102              
103             =item * pendingDescriptiveName
104              
105              
106             =item * isHidden
107              
108              
109              
110              
111             =back
112              
113              
114             =head1 METHODS
115              
116             =head2 new
117              
118             Constructor. The following data structure may be passed to new():
119              
120              
121              
122              
123              
124              
125             =head1 AUTHOR
126              
127             Generated by SOAP::WSDL
128              
129             =cut
130