File Coverage

lib/Google/Ads/AdWords/v201702/FeedItemAttributeValue.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::FeedItemAttributeValue;
2 1     1   1854 use strict;
  1         4  
  1         50  
3 1     1   10 use warnings;
  1         3  
  1         120  
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   7 use Class::Std::Fast::Storable constructor => 'none';
  1         2  
  1         12  
18 1     1   154 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  1         2  
  1         108  
19              
20             { # BLOCK to scope variables
21              
22             my %feedAttributeId_of :ATTR(:get);
23             my %integerValue_of :ATTR(:get);
24             my %doubleValue_of :ATTR(:get);
25             my %booleanValue_of :ATTR(:get);
26             my %stringValue_of :ATTR(:get);
27             my %integerValues_of :ATTR(:get);
28             my %doubleValues_of :ATTR(:get);
29             my %booleanValues_of :ATTR(:get);
30             my %stringValues_of :ATTR(:get);
31             my %moneyWithCurrencyValue_of :ATTR(:get);
32              
33             __PACKAGE__->_factory(
34             [ qw( feedAttributeId
35             integerValue
36             doubleValue
37             booleanValue
38             stringValue
39             integerValues
40             doubleValues
41             booleanValues
42             stringValues
43             moneyWithCurrencyValue
44              
45             ) ],
46             {
47             'feedAttributeId' => \%feedAttributeId_of,
48             'integerValue' => \%integerValue_of,
49             'doubleValue' => \%doubleValue_of,
50             'booleanValue' => \%booleanValue_of,
51             'stringValue' => \%stringValue_of,
52             'integerValues' => \%integerValues_of,
53             'doubleValues' => \%doubleValues_of,
54             'booleanValues' => \%booleanValues_of,
55             'stringValues' => \%stringValues_of,
56             'moneyWithCurrencyValue' => \%moneyWithCurrencyValue_of,
57             },
58             {
59             'feedAttributeId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
60             'integerValue' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
61             'doubleValue' => 'SOAP::WSDL::XSD::Typelib::Builtin::double',
62             'booleanValue' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
63             'stringValue' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
64             'integerValues' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
65             'doubleValues' => 'SOAP::WSDL::XSD::Typelib::Builtin::double',
66             'booleanValues' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
67             'stringValues' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
68             'moneyWithCurrencyValue' => 'Google::Ads::AdWords::v201702::MoneyWithCurrency',
69             },
70             {
71              
72             'feedAttributeId' => 'feedAttributeId',
73             'integerValue' => 'integerValue',
74             'doubleValue' => 'doubleValue',
75             'booleanValue' => 'booleanValue',
76             'stringValue' => 'stringValue',
77             'integerValues' => 'integerValues',
78             'doubleValues' => 'doubleValues',
79             'booleanValues' => 'booleanValues',
80             'stringValues' => 'stringValues',
81             'moneyWithCurrencyValue' => 'moneyWithCurrencyValue',
82             }
83             );
84              
85             } # end BLOCK
86              
87              
88              
89              
90              
91              
92              
93             1;
94              
95              
96             =pod
97              
98             =head1 NAME
99              
100             Google::Ads::AdWords::v201702::FeedItemAttributeValue
101              
102             =head1 DESCRIPTION
103              
104             Perl data type class for the XML Schema defined complexType
105             FeedItemAttributeValue from the namespace https://adwords.google.com/api/adwords/cm/v201702.
106              
107             Represents a feed item's value for a particular feed attribute. A feed item's value is composed of a collection of these attribute values.
108              
109              
110              
111              
112             =head2 PROPERTIES
113              
114             The following properties may be accessed using get_PROPERTY / set_PROPERTY
115             methods:
116              
117             =over
118              
119             =item * feedAttributeId
120              
121              
122             =item * integerValue
123              
124              
125             =item * doubleValue
126              
127              
128             =item * booleanValue
129              
130              
131             =item * stringValue
132              
133              
134             =item * integerValues
135              
136              
137             =item * doubleValues
138              
139              
140             =item * booleanValues
141              
142              
143             =item * stringValues
144              
145              
146             =item * moneyWithCurrencyValue
147              
148              
149              
150              
151             =back
152              
153              
154             =head1 METHODS
155              
156             =head2 new
157              
158             Constructor. The following data structure may be passed to new():
159              
160              
161              
162              
163              
164              
165             =head1 AUTHOR
166              
167             Generated by SOAP::WSDL
168              
169             =cut
170