File Coverage

lib/Google/Ads/AdWords/v201702/OfflineConversionFeed.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::v201702::OfflineConversionFeed;
2 1     1   1704 use strict;
  1         3  
  1         26  
3 1     1   5 use warnings;
  1         1  
  1         87  
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 1     1   5 use Class::Std::Fast::Storable constructor => 'none';
  1         2  
  1         7  
18 1     1   194 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         2  
  1         67  
19              
20             { # BLOCK to scope variables
21              
22             my %googleClickId_of :ATTR(:get);
23             my %conversionName_of :ATTR(:get);
24             my %conversionTime_of :ATTR(:get);
25             my %conversionValue_of :ATTR(:get);
26             my %conversionCurrencyCode_of :ATTR(:get);
27             my %externalAttributionCredit_of :ATTR(:get);
28             my %externalAttributionModel_of :ATTR(:get);
29              
30             __PACKAGE__->_factory(
31             [ qw( googleClickId
32             conversionName
33             conversionTime
34             conversionValue
35             conversionCurrencyCode
36             externalAttributionCredit
37             externalAttributionModel
38              
39             ) ],
40             {
41             'googleClickId' => \%googleClickId_of,
42             'conversionName' => \%conversionName_of,
43             'conversionTime' => \%conversionTime_of,
44             'conversionValue' => \%conversionValue_of,
45             'conversionCurrencyCode' => \%conversionCurrencyCode_of,
46             'externalAttributionCredit' => \%externalAttributionCredit_of,
47             'externalAttributionModel' => \%externalAttributionModel_of,
48             },
49             {
50             'googleClickId' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
51             'conversionName' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
52             'conversionTime' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
53             'conversionValue' => 'SOAP::WSDL::XSD::Typelib::Builtin::double',
54             'conversionCurrencyCode' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
55             'externalAttributionCredit' => 'SOAP::WSDL::XSD::Typelib::Builtin::double',
56             'externalAttributionModel' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
57             },
58             {
59              
60             'googleClickId' => 'googleClickId',
61             'conversionName' => 'conversionName',
62             'conversionTime' => 'conversionTime',
63             'conversionValue' => 'conversionValue',
64             'conversionCurrencyCode' => 'conversionCurrencyCode',
65             'externalAttributionCredit' => 'externalAttributionCredit',
66             'externalAttributionModel' => 'externalAttributionModel',
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::v201702::OfflineConversionFeed
86              
87             =head1 DESCRIPTION
88              
89             Perl data type class for the XML Schema defined complexType
90             OfflineConversionFeed from the namespace https://adwords.google.com/api/adwords/cm/v201702.
91              
92             Represents an entire record in the offline conversions feed that the advertiser uploads.
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 * googleClickId
105              
106              
107             =item * conversionName
108              
109              
110             =item * conversionTime
111              
112              
113             =item * conversionValue
114              
115              
116             =item * conversionCurrencyCode
117              
118              
119             =item * externalAttributionCredit
120              
121              
122             =item * externalAttributionModel
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