File Coverage

lib/Google/Ads/AdWords/v201710/OfflineDataUpload.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::v201710::OfflineDataUpload;
2 1     1   2972 use strict;
  1         5  
  1         35  
3 1     1   8 use warnings;
  1         4  
  1         121  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8 0     0     sub get_xmlns { 'https://adwords.google.com/api/adwords/rm/v201710' };
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   10 use Class::Std::Fast::Storable constructor => 'none';
  1         3  
  1         13  
18 1     1   265 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         4  
  1         143  
19              
20             { # BLOCK to scope variables
21              
22             my %externalUploadId_of :ATTR(:get);
23             my %uploadType_of :ATTR(:get);
24             my %uploadStatus_of :ATTR(:get);
25             my %uploadMetadata_of :ATTR(:get);
26             my %offlineDataList_of :ATTR(:get);
27             my %partialDataErrors_of :ATTR(:get);
28             my %failureReason_of :ATTR(:get);
29              
30             __PACKAGE__->_factory(
31             [ qw( externalUploadId
32             uploadType
33             uploadStatus
34             uploadMetadata
35             offlineDataList
36             partialDataErrors
37             failureReason
38              
39             ) ],
40             {
41             'externalUploadId' => \%externalUploadId_of,
42             'uploadType' => \%uploadType_of,
43             'uploadStatus' => \%uploadStatus_of,
44             'uploadMetadata' => \%uploadMetadata_of,
45             'offlineDataList' => \%offlineDataList_of,
46             'partialDataErrors' => \%partialDataErrors_of,
47             'failureReason' => \%failureReason_of,
48             },
49             {
50             'externalUploadId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
51             'uploadType' => 'Google::Ads::AdWords::v201710::OfflineDataUploadType',
52             'uploadStatus' => 'Google::Ads::AdWords::v201710::OfflineDataUploadStatus',
53             'uploadMetadata' => 'Google::Ads::AdWords::v201710::UploadMetadata',
54             'offlineDataList' => 'Google::Ads::AdWords::v201710::OfflineData',
55             'partialDataErrors' => 'Google::Ads::AdWords::v201710::ApiError',
56             'failureReason' => 'Google::Ads::AdWords::v201710::OfflineDataUploadFailureReason',
57             },
58             {
59              
60             'externalUploadId' => 'externalUploadId',
61             'uploadType' => 'uploadType',
62             'uploadStatus' => 'uploadStatus',
63             'uploadMetadata' => 'uploadMetadata',
64             'offlineDataList' => 'offlineDataList',
65             'partialDataErrors' => 'partialDataErrors',
66             'failureReason' => 'failureReason',
67             }
68             );
69              
70             } # end BLOCK
71              
72              
73              
74              
75              
76              
77              
78             1;
79              
80              
81             =pod
82              
83             =head1 NAME
84              
85             Google::Ads::AdWords::v201710::OfflineDataUpload
86              
87             =head1 DESCRIPTION
88              
89             Perl data type class for the XML Schema defined complexType
90             OfflineDataUpload from the namespace https://adwords.google.com/api/adwords/rm/v201710.
91              
92             Data representing offline transactions.
93              
94              
95              
96              
97             =head2 PROPERTIES
98              
99             The following properties may be accessed using get_PROPERTY / set_PROPERTY
100             methods:
101              
102             =over
103              
104             =item * externalUploadId
105              
106              
107             =item * uploadType
108              
109              
110             =item * uploadStatus
111              
112              
113             =item * uploadMetadata
114              
115              
116             =item * offlineDataList
117              
118              
119             =item * partialDataErrors
120              
121              
122             =item * failureReason
123              
124              
125              
126              
127             =back
128              
129              
130             =head1 METHODS
131              
132             =head2 new
133              
134             Constructor. The following data structure may be passed to new():
135              
136              
137              
138              
139              
140              
141             =head1 AUTHOR
142              
143             Generated by SOAP::WSDL
144              
145             =cut
146