File Coverage

lib/Google/Ads/AdWords/v201702/AdGroupFeed.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::AdGroupFeed;
2 1     1   1754 use strict;
  1         3  
  1         38  
3 1     1   9 use warnings;
  1         2  
  1         144  
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   10 use Class::Std::Fast::Storable constructor => 'none';
  1         4  
  1         14  
18 1     1   186 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         1  
  1         111  
19              
20             { # BLOCK to scope variables
21              
22             my %feedId_of :ATTR(:get);
23             my %adGroupId_of :ATTR(:get);
24             my %matchingFunction_of :ATTR(:get);
25             my %placeholderTypes_of :ATTR(:get);
26             my %status_of :ATTR(:get);
27             my %baseCampaignId_of :ATTR(:get);
28             my %baseAdGroupId_of :ATTR(:get);
29              
30             __PACKAGE__->_factory(
31             [ qw( feedId
32             adGroupId
33             matchingFunction
34             placeholderTypes
35             status
36             baseCampaignId
37             baseAdGroupId
38              
39             ) ],
40             {
41             'feedId' => \%feedId_of,
42             'adGroupId' => \%adGroupId_of,
43             'matchingFunction' => \%matchingFunction_of,
44             'placeholderTypes' => \%placeholderTypes_of,
45             'status' => \%status_of,
46             'baseCampaignId' => \%baseCampaignId_of,
47             'baseAdGroupId' => \%baseAdGroupId_of,
48             },
49             {
50             'feedId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
51             'adGroupId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
52             'matchingFunction' => 'Google::Ads::AdWords::v201702::Function',
53             'placeholderTypes' => 'SOAP::WSDL::XSD::Typelib::Builtin::int',
54             'status' => 'Google::Ads::AdWords::v201702::AdGroupFeed::Status',
55             'baseCampaignId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
56             'baseAdGroupId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
57             },
58             {
59              
60             'feedId' => 'feedId',
61             'adGroupId' => 'adGroupId',
62             'matchingFunction' => 'matchingFunction',
63             'placeholderTypes' => 'placeholderTypes',
64             'status' => 'status',
65             'baseCampaignId' => 'baseCampaignId',
66             'baseAdGroupId' => 'baseAdGroupId',
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::AdGroupFeed
86              
87             =head1 DESCRIPTION
88              
89             Perl data type class for the XML Schema defined complexType
90             AdGroupFeed from the namespace https://adwords.google.com/api/adwords/cm/v201702.
91              
92             AdGroupFeeds are used to link a feed to an adgroup using a matching function, making the feed's feed items available in the adgroup's ads for substitution.
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 * feedId
105              
106              
107             =item * adGroupId
108              
109              
110             =item * matchingFunction
111              
112              
113             =item * placeholderTypes
114              
115              
116             =item * status
117              
118              
119             =item * baseCampaignId
120              
121              
122             =item * baseAdGroupId
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