File Coverage

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