File Coverage

lib/Google/Ads/AdWords/v201702/Attribute.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Google::Ads::AdWords::v201702::Attribute;
2 2     2   1738 use strict;
  2         6  
  2         75  
3 2     2   19 use warnings;
  2         7  
  2         273  
4              
5              
6             __PACKAGE__->_set_element_form_qualified(1);
7              
8             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             return $XML_ATTRIBUTE_CLASS;
15             }
16              
17 2     2   17 use Class::Std::Fast::Storable constructor => 'none';
  2         7  
  2         18  
18 2     2   272 use base qw(Google::Ads::SOAP::Typelib::ComplexType);
  2         6  
  2         263  
19              
20             { # BLOCK to scope variables
21              
22             my %Attribute__Type_of :ATTR(:get);
23              
24             __PACKAGE__->_factory(
25             [ qw( Attribute__Type
26              
27             ) ],
28             {
29             'Attribute__Type' => \%Attribute__Type_of,
30             },
31             {
32             'Attribute__Type' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
33             },
34             {
35              
36             'Attribute__Type' => 'Attribute.Type',
37             }
38             );
39              
40             } # end BLOCK
41              
42              
43              
44              
45              
46              
47              
48             1;
49              
50              
51             =pod
52              
53             =head1 NAME
54              
55             Google::Ads::AdWords::v201702::Attribute
56              
57             =head1 DESCRIPTION
58              
59             Perl data type class for the XML Schema defined complexType
60             Attribute from the namespace https://adwords.google.com/api/adwords/o/v201702.
61              
62             {@link Attribute}s encompass the core information about a particular {@link TargetingIdea}. Some attributes are for {@code KEYWORD} {@link IdeaType}s, some are for {@code PLACEMENT} {@link IdeaType}s, and some are for both. Ultimately, an {@link Attribute} instance simply wraps an actual value of interest. For example, {@link KeywordAttribute} wraps the keyword itself, while a {@link BooleanAttribute} simply wraps a boolean describing some information about the keyword idea.
63              
64              
65              
66              
67             =head2 PROPERTIES
68              
69             The following properties may be accessed using get_PROPERTY / set_PROPERTY
70             methods:
71              
72             =over
73              
74             =item * Attribute__Type
75              
76             Note: The name of this property has been altered, because it didn't match
77             perl's notion of variable/subroutine names. The altered name is used in
78             perl code only, XML output uses the original name:
79              
80             Attribute.Type
81              
82              
83              
84              
85             =back
86              
87              
88             =head1 METHODS
89              
90             =head2 new
91              
92             Constructor. The following data structure may be passed to new():
93              
94              
95              
96              
97              
98              
99             =head1 AUTHOR
100              
101             Generated by SOAP::WSDL
102              
103             =cut
104