File Coverage

blib/lib/Yahoo/Marketing/NetworkDistribution.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::NetworkDistribution;
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   46884 use strict; use warnings;
  2     2   5  
  2         60  
  2         10  
  2         4  
  2         53  
6            
7 2     2   10 use base qw/Yahoo::Marketing::ComplexType/;
  2         4  
  2         595  
8            
9             =head1 NAME
10            
11             Yahoo::Marketing::NetworkDistribution - an object to represent a Yahoo Marketing NetworkDistribution.
12            
13             =cut
14            
15             sub _user_setable_attributes {
16             return ( qw/
17             networkTargets
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             networkTargets
50            
51             =back
52            
53             =head2 get (read only) methods
54            
55             =over 8
56            
57            
58             =back
59            
60             =cut
61