File Coverage

lib/Google/Ads/AdWords/v201710/BidLandscape.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Google::Ads::AdWords::v201710::BidLandscape;
2 2     2   2205 use strict;
  2         6  
  2         80  
3 2     2   16 use warnings;
  2         7  
  2         281  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8             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             return $XML_ATTRIBUTE_CLASS;
15             }
16              
17              
18 2     2   18 use base qw(Google::Ads::AdWords::v201710::DataEntry);
  2         6  
  2         644  
19             # Variety: sequence
20             use Class::Std::Fast::Storable constructor => 'none';
21             use base qw(Google::Ads::SOAP::Typelib::ComplexType);
22              
23             { # BLOCK to scope variables
24              
25             my %DataEntry__Type_of :ATTR(:get);
26             my %campaignId_of :ATTR(:get);
27             my %adGroupId_of :ATTR(:get);
28             my %startDate_of :ATTR(:get);
29             my %endDate_of :ATTR(:get);
30             my %landscapePoints_of :ATTR(:get);
31              
32             __PACKAGE__->_factory(
33             [ qw( DataEntry__Type
34             campaignId
35             adGroupId
36             startDate
37             endDate
38             landscapePoints
39              
40             ) ],
41             {
42             'DataEntry__Type' => \%DataEntry__Type_of,
43             'campaignId' => \%campaignId_of,
44             'adGroupId' => \%adGroupId_of,
45             'startDate' => \%startDate_of,
46             'endDate' => \%endDate_of,
47             'landscapePoints' => \%landscapePoints_of,
48             },
49             {
50             'DataEntry__Type' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
51             'campaignId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
52             'adGroupId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
53             'startDate' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
54             'endDate' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
55             'landscapePoints' => 'Google::Ads::AdWords::v201710::BidLandscape::LandscapePoint',
56             },
57             {
58              
59             'DataEntry__Type' => 'DataEntry.Type',
60             'campaignId' => 'campaignId',
61             'adGroupId' => 'adGroupId',
62             'startDate' => 'startDate',
63             'endDate' => 'endDate',
64             'landscapePoints' => 'landscapePoints',
65             }
66             );
67              
68             } # end BLOCK
69              
70              
71              
72              
73              
74              
75              
76             1;
77              
78              
79             =pod
80              
81             =head1 NAME
82              
83             Google::Ads::AdWords::v201710::BidLandscape
84              
85             =head1 DESCRIPTION
86              
87             Perl data type class for the XML Schema defined complexType
88             BidLandscape from the namespace https://adwords.google.com/api/adwords/cm/v201710.
89              
90             Represents data about a bid landscape for an ad group or criterion.
91              
92              
93              
94              
95             =head2 PROPERTIES
96              
97             The following properties may be accessed using get_PROPERTY / set_PROPERTY
98             methods:
99              
100             =over
101              
102             =item * campaignId
103              
104              
105             =item * adGroupId
106              
107              
108             =item * startDate
109              
110              
111             =item * endDate
112              
113              
114             =item * landscapePoints
115              
116              
117              
118              
119             =back
120              
121              
122             =head1 METHODS
123              
124             =head2 new
125              
126             Constructor. The following data structure may be passed to new():
127              
128              
129              
130              
131              
132              
133             =head1 AUTHOR
134              
135             Generated by SOAP::WSDL
136              
137             =cut
138