File Coverage

blib/lib/Google/Ads/AdWords/v201702/SoapHeader.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Google::Ads::AdWords::v201702::SoapHeader;
2 2     2   1729 use strict;
  2         5  
  2         53  
3 2     2   8 use warnings;
  2         4  
  2         227  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8             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             return $XML_ATTRIBUTE_CLASS;
15             }
16              
17 2     2   14 use Class::Std::Fast::Storable constructor => 'none';
  2         5  
  2         20  
18 2     2   349 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  2         4  
  2         213  
19              
20             { # BLOCK to scope variables
21              
22             my %clientCustomerId_of :ATTR(:get);
23             my %developerToken_of :ATTR(:get);
24             my %userAgent_of :ATTR(:get);
25             my %validateOnly_of :ATTR(:get);
26             my %partialFailure_of :ATTR(:get);
27              
28             __PACKAGE__->_factory(
29             [ qw( clientCustomerId
30             developerToken
31             userAgent
32             validateOnly
33             partialFailure
34              
35             ) ],
36             {
37             'clientCustomerId' => \%clientCustomerId_of,
38             'developerToken' => \%developerToken_of,
39             'userAgent' => \%userAgent_of,
40             'validateOnly' => \%validateOnly_of,
41             'partialFailure' => \%partialFailure_of,
42             },
43             {
44             'clientCustomerId' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
45             'developerToken' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
46             'userAgent' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
47             'validateOnly' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
48             'partialFailure' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
49             },
50             {
51              
52             'clientCustomerId' => 'clientCustomerId',
53             'developerToken' => 'developerToken',
54             'userAgent' => 'userAgent',
55             'validateOnly' => 'validateOnly',
56             'partialFailure' => 'partialFailure',
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::SoapHeader
76              
77             =head1 DESCRIPTION
78              
79             Perl data type class for the XML Schema defined complexType
80             SoapHeader from the namespace https://adwords.google.com/api/adwords/cm/v201702.
81              
82             Defines the required and optional elements within the header of a SOAP request.
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 * clientCustomerId
95              
96              
97             =item * developerToken
98              
99              
100             =item * userAgent
101              
102              
103             =item * validateOnly
104              
105              
106             =item * partialFailure
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