File Coverage

blib/lib/Google/Ads/AdWords/v201705/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::v201705::ApiError;
2 1     1   13 use strict;
  1         4  
  1         43  
3 1     1   6 use warnings;
  1         3  
  1         80  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8 0     0     sub get_xmlns { 'https://adwords.google.com/api/adwords/cm/v201705' };
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         2  
  1         20  
18 1     1   141 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         2  
  1         163  
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::v201705::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::v201705::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/v201705.
81              
82              
83              
84              
85              
86              
87              
88             =head2 PROPERTIES
89              
90             The following properties may be accessed using get_PROPERTY / set_PROPERTY
91             methods:
92              
93             =over
94              
95             =item * fieldPath
96              
97              
98             =item * fieldPathElements
99              
100              
101             =item * trigger
102              
103              
104             =item * errorString
105              
106              
107             =item * ApiError__Type
108              
109             Note: The name of this property has been altered, because it didn't match
110             perl's notion of variable/subroutine names. The altered name is used in
111             perl code only, XML output uses the original name:
112              
113             ApiError.Type
114              
115              
116              
117              
118             =back
119              
120              
121             =head1 METHODS
122              
123             =head2 new
124              
125             Constructor. The following data structure may be passed to new():
126              
127              
128              
129              
130              
131              
132             =head1 AUTHOR
133              
134             Generated by SOAP::WSDL
135              
136             =cut
137