File Coverage

lib/Google/Ads/AdWords/v201702/CriterionBidLandscape.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 5 60.0
pod n/a
total 12 16 75.0


line stmt bran cond sub pod time code
1             package Google::Ads::AdWords::v201702::CriterionBidLandscape;
2 1     1   1885 use strict;
  1         2  
  1         34  
3 1     1   5 use warnings;
  1         2  
  1         80  
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              
18 1     1   5 use base qw(Google::Ads::AdWords::v201702::BidLandscape);
  1         1  
  1         101  
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             my %criterionId_of :ATTR(:get);
32              
33             __PACKAGE__->_factory(
34             [ qw( DataEntry__Type
35             campaignId
36             adGroupId
37             startDate
38             endDate
39             landscapePoints
40             criterionId
41              
42             ) ],
43             {
44             'DataEntry__Type' => \%DataEntry__Type_of,
45             'campaignId' => \%campaignId_of,
46             'adGroupId' => \%adGroupId_of,
47             'startDate' => \%startDate_of,
48             'endDate' => \%endDate_of,
49             'landscapePoints' => \%landscapePoints_of,
50             'criterionId' => \%criterionId_of,
51             },
52             {
53             'DataEntry__Type' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
54             'campaignId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
55             'adGroupId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
56             'startDate' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
57             'endDate' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
58             'landscapePoints' => 'Google::Ads::AdWords::v201702::BidLandscape::LandscapePoint',
59             'criterionId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
60             },
61             {
62              
63             'DataEntry__Type' => 'DataEntry.Type',
64             'campaignId' => 'campaignId',
65             'adGroupId' => 'adGroupId',
66             'startDate' => 'startDate',
67             'endDate' => 'endDate',
68             'landscapePoints' => 'landscapePoints',
69             'criterionId' => 'criterionId',
70             }
71             );
72              
73             } # end BLOCK
74              
75              
76              
77              
78              
79              
80              
81             1;
82              
83              
84             =pod
85              
86             =head1 NAME
87              
88             Google::Ads::AdWords::v201702::CriterionBidLandscape
89              
90             =head1 DESCRIPTION
91              
92             Perl data type class for the XML Schema defined complexType
93             CriterionBidLandscape from the namespace https://adwords.google.com/api/adwords/cm/v201702.
94              
95             The bid landscape for a criterion. A bid landscape estimates how a a criterion will perform based on different bid amounts.
96              
97              
98              
99              
100             =head2 PROPERTIES
101              
102             The following properties may be accessed using get_PROPERTY / set_PROPERTY
103             methods:
104              
105             =over
106              
107             =item * criterionId
108              
109              
110              
111              
112             =back
113              
114              
115             =head1 METHODS
116              
117             =head2 new
118              
119             Constructor. The following data structure may be passed to new():
120              
121              
122              
123              
124              
125              
126             =head1 AUTHOR
127              
128             Generated by SOAP::WSDL
129              
130             =cut
131