File Coverage

lib/Google/Ads/AdWords/v201702/MobileAppCategory.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::MobileAppCategory;
2 1     1   1599 use strict;
  1         2  
  1         24  
3 1     1   5 use warnings;
  1         1  
  1         79  
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   4 use base qw(Google::Ads::AdWords::v201702::Criterion);
  1         2  
  1         92  
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 %type_of :ATTR(:get);
27             my %Criterion__Type_of :ATTR(:get);
28             my %mobileAppCategoryId_of :ATTR(:get);
29             my %displayName_of :ATTR(:get);
30              
31             __PACKAGE__->_factory(
32             [ qw( id
33             type
34             Criterion__Type
35             mobileAppCategoryId
36             displayName
37              
38             ) ],
39             {
40             'id' => \%id_of,
41             'type' => \%type_of,
42             'Criterion__Type' => \%Criterion__Type_of,
43             'mobileAppCategoryId' => \%mobileAppCategoryId_of,
44             'displayName' => \%displayName_of,
45             },
46             {
47             'id' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
48             'type' => 'Google::Ads::AdWords::v201702::Criterion::Type',
49             'Criterion__Type' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
50             'mobileAppCategoryId' => 'SOAP::WSDL::XSD::Typelib::Builtin::int',
51             'displayName' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
52             },
53             {
54              
55             'id' => 'id',
56             'type' => 'type',
57             'Criterion__Type' => 'Criterion.Type',
58             'mobileAppCategoryId' => 'mobileAppCategoryId',
59             'displayName' => 'displayName',
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::MobileAppCategory
79              
80             =head1 DESCRIPTION
81              
82             Perl data type class for the XML Schema defined complexType
83             MobileAppCategory from the namespace https://adwords.google.com/api/adwords/cm/v201702.
84              
85             Represents the mobile app category to be targeted. View the complete list of available mobile app categories. This is enabled for AdX.
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             =item * mobileAppCategoryId
98              
99              
100             =item * displayName
101              
102              
103              
104              
105             =back
106              
107              
108             =head1 METHODS
109              
110             =head2 new
111              
112             Constructor. The following data structure may be passed to new():
113              
114              
115              
116              
117              
118              
119             =head1 AUTHOR
120              
121             Generated by SOAP::WSDL
122              
123             =cut
124