File Coverage

blib/lib/Google/Ads/AdWords/v201708/ApiError.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::v201708::ApiError;
2 1     1   11 use strict;
  1         5  
  1         39  
3 1     1   6 use warnings;
  1         3  
  1         82  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8 0     0     sub get_xmlns { 'https://adwords.google.com/api/adwords/cm/v201708' };
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         11  
18 1     1   143 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         2  
  1         168  
19              
20             { # BLOCK to scope variables
21              
22             my %fieldPath_of :ATTR(:get);
23             my %fieldPathElements_of :ATTR(:get);
24             my %trigger_of :ATTR(:get);
25             my %errorString_of :ATTR(:get);
26             my %ApiError__Type_of :ATTR(:get);
27              
28             __PACKAGE__->_factory(
29             [ qw( fieldPath
30             fieldPathElements
31             trigger
32             errorString
33             ApiError__Type
34              
35             ) ],
36             {
37             'fieldPath' => \%fieldPath_of,
38             'fieldPathElements' => \%fieldPathElements_of,
39             'trigger' => \%trigger_of,
40             'errorString' => \%errorString_of,
41             'ApiError__Type' => \%ApiError__Type_of,
42             },
43             {
44             'fieldPath' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
45             'fieldPathElements' => 'Google::Ads::AdWords::v201708::FieldPathElement',
46             'trigger' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
47             'errorString' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
48             'ApiError__Type' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
49             },
50             {
51              
52             'fieldPath' => 'fieldPath',
53             'fieldPathElements' => 'fieldPathElements',
54             'trigger' => 'trigger',
55             'errorString' => 'errorString',
56             'ApiError__Type' => 'ApiError.Type',
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::v201708::ApiError
76              
77             =head1 DESCRIPTION
78              
79             Perl data type class for the XML Schema defined complexType
80             ApiError from the namespace https://adwords.google.com/api/adwords/cm/v201708.
81              
82             The API error base class that provides details about an error that occurred while processing a service request.

The OGNL field path is provided for parsers to identify the request data element that may have caused the error.

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 * fieldPath
95              
96              
97             =item * fieldPathElements
98              
99              
100             =item * trigger
101              
102              
103             =item * errorString
104              
105              
106             =item * ApiError__Type
107              
108             Note: The name of this property has been altered, because it didn't match
109             perl's notion of variable/subroutine names. The altered name is used in
110             perl code only, XML output uses the original name:
111              
112             ApiError.Type
113              
114              
115              
116              
117             =back
118              
119              
120             =head1 METHODS
121              
122             =head2 new
123              
124             Constructor. The following data structure may be passed to new():
125              
126              
127              
128              
129              
130              
131             =head1 AUTHOR
132              
133             Generated by SOAP::WSDL
134              
135             =cut
136