File Coverage

lib/Google/Ads/AdWords/v201702/QueryError.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod n/a
total 12 16 75.0


line stmt bran cond sub pod time code
1             package Google::Ads::AdWords::v201702::QueryError;
2 1     1   1845 use strict;
  1         2  
  1         30  
3 1     1   5 use warnings;
  1         1  
  1         77  
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              
18 1     1   5 use base qw(Google::Ads::AdWords::v201702::ApiError);
  1         2  
  1         96  
19             # Variety: sequence
20             use Class::Std::Fast::Storable constructor => 'none';
21             use base qw(Google::Ads::SOAP::Typelib::ComplexType);
22              
23             { # BLOCK to scope variables
24              
25             my %fieldPath_of :ATTR(:get);
26             my %fieldPathElements_of :ATTR(:get);
27             my %trigger_of :ATTR(:get);
28             my %errorString_of :ATTR(:get);
29             my %ApiError__Type_of :ATTR(:get);
30             my %reason_of :ATTR(:get);
31             my %message_of :ATTR(:get);
32              
33             __PACKAGE__->_factory(
34             [ qw( fieldPath
35             fieldPathElements
36             trigger
37             errorString
38             ApiError__Type
39             reason
40             message
41              
42             ) ],
43             {
44             'fieldPath' => \%fieldPath_of,
45             'fieldPathElements' => \%fieldPathElements_of,
46             'trigger' => \%trigger_of,
47             'errorString' => \%errorString_of,
48             'ApiError__Type' => \%ApiError__Type_of,
49             'reason' => \%reason_of,
50             'message' => \%message_of,
51             },
52             {
53             'fieldPath' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
54             'fieldPathElements' => 'Google::Ads::AdWords::v201702::FieldPathElement',
55             'trigger' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
56             'errorString' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
57             'ApiError__Type' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
58             'reason' => 'Google::Ads::AdWords::v201702::QueryError::Reason',
59             'message' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
60             },
61             {
62              
63             'fieldPath' => 'fieldPath',
64             'fieldPathElements' => 'fieldPathElements',
65             'trigger' => 'trigger',
66             'errorString' => 'errorString',
67             'ApiError__Type' => 'ApiError.Type',
68             'reason' => 'reason',
69             'message' => 'message',
70             }
71             );
72              
73             } # end BLOCK
74              
75              
76              
77              
78              
79              
80              
81             1;
82              
83              
84             =pod
85              
86             =head1 NAME
87              
88             Google::Ads::AdWords::v201702::QueryError
89              
90             =head1 DESCRIPTION
91              
92             Perl data type class for the XML Schema defined complexType
93             QueryError from the namespace https://adwords.google.com/api/adwords/cm/v201702.
94              
95             A QueryError represents possible errors for query parsing and execution.
96              
97              
98              
99              
100             =head2 PROPERTIES
101              
102             The following properties may be accessed using get_PROPERTY / set_PROPERTY
103             methods:
104              
105             =over
106              
107             =item * reason
108              
109              
110             =item * message
111              
112              
113              
114              
115             =back
116              
117              
118             =head1 METHODS
119              
120             =head2 new
121              
122             Constructor. The following data structure may be passed to new():
123              
124              
125              
126              
127              
128              
129             =head1 AUTHOR
130              
131             Generated by SOAP::WSDL
132              
133             =cut
134