File Coverage

lib/Google/Ads/AdWords/v201710/AdGroupAd.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::AdGroupAd;
2 1     1   2175 use strict;
  1         2  
  1         38  
3 1     1   9 use warnings;
  1         4  
  1         91  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8 0     0     sub get_xmlns { 'https://adwords.google.com/api/adwords/cm/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   6 use Class::Std::Fast::Storable constructor => 'none';
  1         1  
  1         11  
18 1     1   178 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         4  
  1         161  
19              
20             { # BLOCK to scope variables
21              
22             my %adGroupId_of :ATTR(:get);
23             my %ad_of :ATTR(:get);
24             my %status_of :ATTR(:get);
25             my %policySummary_of :ATTR(:get);
26             my %labels_of :ATTR(:get);
27             my %baseCampaignId_of :ATTR(:get);
28             my %baseAdGroupId_of :ATTR(:get);
29             my %forwardCompatibilityMap_of :ATTR(:get);
30              
31             __PACKAGE__->_factory(
32             [ qw( adGroupId
33             ad
34             status
35             policySummary
36             labels
37             baseCampaignId
38             baseAdGroupId
39             forwardCompatibilityMap
40              
41             ) ],
42             {
43             'adGroupId' => \%adGroupId_of,
44             'ad' => \%ad_of,
45             'status' => \%status_of,
46             'policySummary' => \%policySummary_of,
47             'labels' => \%labels_of,
48             'baseCampaignId' => \%baseCampaignId_of,
49             'baseAdGroupId' => \%baseAdGroupId_of,
50             'forwardCompatibilityMap' => \%forwardCompatibilityMap_of,
51             },
52             {
53             'adGroupId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
54             'ad' => 'Google::Ads::AdWords::v201710::Ad',
55             'status' => 'Google::Ads::AdWords::v201710::AdGroupAd::Status',
56             'policySummary' => 'Google::Ads::AdWords::v201710::AdGroupAdPolicySummary',
57             'labels' => 'Google::Ads::AdWords::v201710::Label',
58             'baseCampaignId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
59             'baseAdGroupId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
60             'forwardCompatibilityMap' => 'Google::Ads::AdWords::v201710::String_StringMapEntry',
61             },
62             {
63              
64             'adGroupId' => 'adGroupId',
65             'ad' => 'ad',
66             'status' => 'status',
67             'policySummary' => 'policySummary',
68             'labels' => 'labels',
69             'baseCampaignId' => 'baseCampaignId',
70             'baseAdGroupId' => 'baseAdGroupId',
71             'forwardCompatibilityMap' => 'forwardCompatibilityMap',
72             }
73             );
74              
75             } # end BLOCK
76              
77              
78              
79              
80              
81              
82              
83             1;
84              
85              
86             =pod
87              
88             =head1 NAME
89              
90             Google::Ads::AdWords::v201710::AdGroupAd
91              
92             =head1 DESCRIPTION
93              
94             Perl data type class for the XML Schema defined complexType
95             AdGroupAd from the namespace https://adwords.google.com/api/adwords/cm/v201710.
96              
97             Represents an ad in an ad group.
98              
99              
100              
101              
102             =head2 PROPERTIES
103              
104             The following properties may be accessed using get_PROPERTY / set_PROPERTY
105             methods:
106              
107             =over
108              
109             =item * adGroupId
110              
111              
112             =item * ad
113              
114              
115             =item * status
116              
117              
118             =item * policySummary
119              
120              
121             =item * labels
122              
123              
124             =item * baseCampaignId
125              
126              
127             =item * baseAdGroupId
128              
129              
130             =item * forwardCompatibilityMap
131              
132              
133              
134              
135             =back
136              
137              
138             =head1 METHODS
139              
140             =head2 new
141              
142             Constructor. The following data structure may be passed to new():
143              
144              
145              
146              
147              
148              
149             =head1 AUTHOR
150              
151             Generated by SOAP::WSDL
152              
153             =cut
154