File Coverage

lib/Google/Ads/AdWords/v201702/TargetingIdeaSelector.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::TargetingIdeaSelector;
2 1     1   1715 use strict;
  1         2  
  1         23  
3 1     1   4 use warnings;
  1         2  
  1         77  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8 0     0     sub get_xmlns { 'https://adwords.google.com/api/adwords/o/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   6 use Class::Std::Fast::Storable constructor => 'none';
  1         1  
  1         9  
18 1     1   121 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         2  
  1         56  
19              
20             { # BLOCK to scope variables
21              
22             my %searchParameters_of :ATTR(:get);
23             my %ideaType_of :ATTR(:get);
24             my %requestType_of :ATTR(:get);
25             my %requestedAttributeTypes_of :ATTR(:get);
26             my %paging_of :ATTR(:get);
27             my %localeCode_of :ATTR(:get);
28             my %currencyCode_of :ATTR(:get);
29              
30             __PACKAGE__->_factory(
31             [ qw( searchParameters
32             ideaType
33             requestType
34             requestedAttributeTypes
35             paging
36             localeCode
37             currencyCode
38              
39             ) ],
40             {
41             'searchParameters' => \%searchParameters_of,
42             'ideaType' => \%ideaType_of,
43             'requestType' => \%requestType_of,
44             'requestedAttributeTypes' => \%requestedAttributeTypes_of,
45             'paging' => \%paging_of,
46             'localeCode' => \%localeCode_of,
47             'currencyCode' => \%currencyCode_of,
48             },
49             {
50             'searchParameters' => 'Google::Ads::AdWords::v201702::SearchParameter',
51             'ideaType' => 'Google::Ads::AdWords::v201702::IdeaType',
52             'requestType' => 'Google::Ads::AdWords::v201702::RequestType',
53             'requestedAttributeTypes' => 'Google::Ads::AdWords::v201702::AttributeType',
54             'paging' => 'Google::Ads::AdWords::v201702::Paging',
55             'localeCode' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
56             'currencyCode' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
57             },
58             {
59              
60             'searchParameters' => 'searchParameters',
61             'ideaType' => 'ideaType',
62             'requestType' => 'requestType',
63             'requestedAttributeTypes' => 'requestedAttributeTypes',
64             'paging' => 'paging',
65             'localeCode' => 'localeCode',
66             'currencyCode' => 'currencyCode',
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::TargetingIdeaSelector
86              
87             =head1 DESCRIPTION
88              
89             Perl data type class for the XML Schema defined complexType
90             TargetingIdeaSelector from the namespace https://adwords.google.com/api/adwords/o/v201702.
91              
92             A descriptor for finding {@link TargetingIdea}s that match the specified criteria.
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 * searchParameters
105              
106              
107             =item * ideaType
108              
109              
110             =item * requestType
111              
112              
113             =item * requestedAttributeTypes
114              
115              
116             =item * paging
117              
118              
119             =item * localeCode
120              
121              
122             =item * currencyCode
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