File Coverage

blib/lib/Yahoo/Marketing/APT/PlacementContentTargetingAttributes.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::PlacementContentTargetingAttributes;
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   58888 use strict; use warnings;
  1     1   2  
  1         42  
  1         5  
  1         1  
  1         34  
6              
7 1     1   5 use base qw/Yahoo::Marketing::ComplexType/;
  1         2  
  1         5397  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::PlacementContentTargetingAttributes - a data object to represent a PlacementContentTargetingAttributes.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             contentTopics
18             contentTypes
19             customContentCategories
20             customSections
21             networks
22             publishers
23             sites
24             / );
25             }
26              
27             sub _read_only_attributes {
28             return ( qw/
29             / );
30             }
31              
32             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
33             __PACKAGE__->_read_only_attributes
34             );
35              
36              
37             1;
38             =head1 SYNOPSIS
39              
40             See L for documentation of the various data objects.
41              
42              
43             =cut
44              
45             =head1 METHODS
46              
47             =head2 new
48              
49             Creates a new instance
50              
51             =head2 get/set methods
52              
53             =over 8
54              
55             contentTopics
56             contentTypes
57             customContentCategories
58             customSections
59             networks
60             publishers
61             sites
62              
63             =back
64              
65             =head2 get (read only) methods
66              
67             =over 8
68              
69              
70             =back
71              
72             =cut
73