File Coverage

lib/Google/Ads/AdWords/v201702/TextLabel.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::TextLabel;
2 1     1   1645 use strict;
  1         2  
  1         23  
3 1     1   3 use warnings;
  1         2  
  1         76  
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   6 use base qw(Google::Ads::AdWords::v201702::Label);
  1         2  
  1         284  
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 %id_of :ATTR(:get);
26             my %name_of :ATTR(:get);
27             my %status_of :ATTR(:get);
28             my %attribute_of :ATTR(:get);
29             my %Label__Type_of :ATTR(:get);
30              
31             __PACKAGE__->_factory(
32             [ qw( id
33             name
34             status
35             attribute
36             Label__Type
37              
38             ) ],
39             {
40             'id' => \%id_of,
41             'name' => \%name_of,
42             'status' => \%status_of,
43             'attribute' => \%attribute_of,
44             'Label__Type' => \%Label__Type_of,
45             },
46             {
47             'id' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
48             'name' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
49             'status' => 'Google::Ads::AdWords::v201702::Label::Status',
50             'attribute' => 'Google::Ads::AdWords::v201702::LabelAttribute',
51             'Label__Type' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
52             },
53             {
54              
55             'id' => 'id',
56             'name' => 'name',
57             'status' => 'status',
58             'attribute' => 'attribute',
59             'Label__Type' => 'Label.Type',
60             }
61             );
62              
63             } # end BLOCK
64              
65              
66              
67              
68              
69              
70              
71             1;
72              
73              
74             =pod
75              
76             =head1 NAME
77              
78             Google::Ads::AdWords::v201702::TextLabel
79              
80             =head1 DESCRIPTION
81              
82             Perl data type class for the XML Schema defined complexType
83             TextLabel from the namespace https://adwords.google.com/api/adwords/cm/v201702.
84              
85             Represent a display label entry.
86              
87              
88              
89              
90             =head2 PROPERTIES
91              
92             The following properties may be accessed using get_PROPERTY / set_PROPERTY
93             methods:
94              
95             =over
96              
97              
98              
99             =back
100              
101              
102             =head1 METHODS
103              
104             =head2 new
105              
106             Constructor. The following data structure may be passed to new():
107              
108              
109              
110              
111              
112              
113             =head1 AUTHOR
114              
115             Generated by SOAP::WSDL
116              
117             =cut
118