File Coverage

blib/lib/Google/Ads/AdWords/v201710/SoapResponseHeader.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::v201710::SoapResponseHeader;
2 2     2   2008 use strict;
  2         4  
  2         57  
3 2     2   9 use warnings;
  2         4  
  2         197  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8             sub get_xmlns { 'https://adwords.google.com/api/adwords/cm/v201710' };
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   18 use Class::Std::Fast::Storable constructor => 'none';
  2         4  
  2         26  
18 2     2   353 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  2         6  
  2         228  
19              
20             { # BLOCK to scope variables
21              
22             my %requestId_of :ATTR(:get);
23             my %serviceName_of :ATTR(:get);
24             my %methodName_of :ATTR(:get);
25             my %operations_of :ATTR(:get);
26             my %responseTime_of :ATTR(:get);
27              
28             __PACKAGE__->_factory(
29             [ qw( requestId
30             serviceName
31             methodName
32             operations
33             responseTime
34              
35             ) ],
36             {
37             'requestId' => \%requestId_of,
38             'serviceName' => \%serviceName_of,
39             'methodName' => \%methodName_of,
40             'operations' => \%operations_of,
41             'responseTime' => \%responseTime_of,
42             },
43             {
44             'requestId' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
45             'serviceName' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
46             'methodName' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
47             'operations' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
48             'responseTime' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
49             },
50             {
51              
52             'requestId' => 'requestId',
53             'serviceName' => 'serviceName',
54             'methodName' => 'methodName',
55             'operations' => 'operations',
56             'responseTime' => 'responseTime',
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::v201710::SoapResponseHeader
76              
77             =head1 DESCRIPTION
78              
79             Perl data type class for the XML Schema defined complexType
80             SoapResponseHeader from the namespace https://adwords.google.com/api/adwords/cm/v201710.
81              
82             Defines the elements within the header of a SOAP response.
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 * requestId
95              
96              
97             =item * serviceName
98              
99              
100             =item * methodName
101              
102              
103             =item * operations
104              
105              
106             =item * responseTime
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