File Coverage

blib/lib/Yahoo/Marketing/AdCarrierEditorialReasons.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::AdCarrierEditorialReasons;
2             # Copyright (c) 2009 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 2     2   47825 use strict; use warnings;
  2     2   5  
  2         59  
  2         9  
  2         5  
  2         53  
6              
7 2     2   10 use base qw/Yahoo::Marketing::ComplexType/;
  2         4  
  2         660  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::AdCarrierEditorialReasons - an object to represent a Yahoo Marketing AdCarrierEditorialReasons.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             adCarrierEditorialReasonInfo
18             / );
19             }
20              
21             sub _read_only_attributes {
22             return ( qw/
23             / );
24             }
25              
26             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
27             __PACKAGE__->_read_only_attributes
28             );
29              
30              
31             1;
32             =head1 SYNOPSIS
33              
34             See L for documentation of the various data objects.
35              
36              
37             =cut
38              
39             =head1 METHODS
40              
41             =head2 new
42              
43             Creates a new instance
44              
45             =head2 get/set methods
46              
47             =over 8
48              
49             adCarrierEditorialReasonInfo
50              
51             =back
52              
53             =head2 get (read only) methods
54              
55             =over 8
56              
57              
58             =back
59              
60             =cut
61