File Coverage

lib/Google/Ads/AdWords/v201702/CriterionUserList.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::CriterionUserList;
2 1     1   1847 use strict;
  1         4  
  1         45  
3 1     1   8 use warnings;
  1         2  
  1         136  
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   10 use base qw(Google::Ads::AdWords::v201702::Criterion);
  1         2  
  1         177  
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 %userListId_of :ATTR(:get);
29             my %userListName_of :ATTR(:get);
30             my %userListMembershipStatus_of :ATTR(:get);
31             my %userListEligibleForSearch_of :ATTR(:get);
32             my %userListEligibleForDisplay_of :ATTR(:get);
33              
34             __PACKAGE__->_factory(
35             [ qw( id
36             type
37             Criterion__Type
38             userListId
39             userListName
40             userListMembershipStatus
41             userListEligibleForSearch
42             userListEligibleForDisplay
43              
44             ) ],
45             {
46             'id' => \%id_of,
47             'type' => \%type_of,
48             'Criterion__Type' => \%Criterion__Type_of,
49             'userListId' => \%userListId_of,
50             'userListName' => \%userListName_of,
51             'userListMembershipStatus' => \%userListMembershipStatus_of,
52             'userListEligibleForSearch' => \%userListEligibleForSearch_of,
53             'userListEligibleForDisplay' => \%userListEligibleForDisplay_of,
54             },
55             {
56             'id' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
57             'type' => 'Google::Ads::AdWords::v201702::Criterion::Type',
58             'Criterion__Type' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
59             'userListId' => 'SOAP::WSDL::XSD::Typelib::Builtin::long',
60             'userListName' => 'SOAP::WSDL::XSD::Typelib::Builtin::string',
61             'userListMembershipStatus' => 'Google::Ads::AdWords::v201702::CriterionUserList::MembershipStatus',
62             'userListEligibleForSearch' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
63             'userListEligibleForDisplay' => 'SOAP::WSDL::XSD::Typelib::Builtin::boolean',
64             },
65             {
66              
67             'id' => 'id',
68             'type' => 'type',
69             'Criterion__Type' => 'Criterion.Type',
70             'userListId' => 'userListId',
71             'userListName' => 'userListName',
72             'userListMembershipStatus' => 'userListMembershipStatus',
73             'userListEligibleForSearch' => 'userListEligibleForSearch',
74             'userListEligibleForDisplay' => 'userListEligibleForDisplay',
75             }
76             );
77              
78             } # end BLOCK
79              
80              
81              
82              
83              
84              
85              
86             1;
87              
88              
89             =pod
90              
91             =head1 NAME
92              
93             Google::Ads::AdWords::v201702::CriterionUserList
94              
95             =head1 DESCRIPTION
96              
97             Perl data type class for the XML Schema defined complexType
98             CriterionUserList from the namespace https://adwords.google.com/api/adwords/cm/v201702.
99              
100             UserList - represents a user list that is defined by the advertiser to be targeted. This is enabled for AdX.
101              
102              
103              
104              
105             =head2 PROPERTIES
106              
107             The following properties may be accessed using get_PROPERTY / set_PROPERTY
108             methods:
109              
110             =over
111              
112             =item * userListId
113              
114              
115             =item * userListName
116              
117              
118             =item * userListMembershipStatus
119              
120              
121             =item * userListEligibleForSearch
122              
123              
124             =item * userListEligibleForDisplay
125              
126              
127              
128              
129             =back
130              
131              
132             =head1 METHODS
133              
134             =head2 new
135              
136             Constructor. The following data structure may be passed to new():
137              
138              
139              
140              
141              
142              
143             =head1 AUTHOR
144              
145             Generated by SOAP::WSDL
146              
147             =cut
148