File Coverage

blib/lib/Yahoo/Marketing/APT/ConditionalFilter.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Yahoo::Marketing::APT::ConditionalFilter;
2             # Copyright (c) 2010 Yahoo! Inc. All rights reserved.
3             # The copyrights to the contents of this file are licensed under the Perl Artistic License (ver. 15 Aug 1997)
4              
5 1     1   49542 use strict; use warnings;
  1     1   3  
  1         44  
  1         71  
  1         3  
  1         41  
6              
7 1     1   6 use base qw/Yahoo::Marketing::ComplexType/;
  1         2  
  1         922  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::ConditionalFilter - a data object to represent a ConditionalFilter.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             ID
18             accountID
19             adBehaviorIDs
20             adContentTopicIDs
21             adLandingPageURLs
22             adThemeIDs
23             advertiserAndNetworkAccountIDs
24             allowReviewedAdsOnly
25             createTimestamp
26             isActive
27             lastUpdateTimestamp
28             name
29             publisherSelector
30             / );
31             }
32              
33             sub _read_only_attributes {
34             return ( qw/
35             / );
36             }
37              
38             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
39             __PACKAGE__->_read_only_attributes
40             );
41              
42              
43             1;
44             =head1 SYNOPSIS
45              
46             See L for documentation of the various data objects.
47              
48              
49             =cut
50              
51             =head1 METHODS
52              
53             =head2 new
54              
55             Creates a new instance
56              
57             =head2 get/set methods
58              
59             =over 8
60              
61             ID
62             accountID
63             adBehaviorIDs
64             adContentTopicIDs
65             adLandingPageURLs
66             adThemeIDs
67             advertiserAndNetworkAccountIDs
68             allowReviewedAdsOnly
69             createTimestamp
70             isActive
71             lastUpdateTimestamp
72             name
73             publisherSelector
74              
75             =back
76              
77             =head2 get (read only) methods
78              
79             =over 8
80              
81              
82             =back
83              
84             =cut
85