File Coverage

blib/lib/Yahoo/Marketing/APT/ReportRequest.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::ReportRequest;
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   48214 use strict; use warnings;
  1     1   3  
  1         33  
  1         6  
  1         2  
  1         29  
6              
7 1     1   6 use base qw/Yahoo::Marketing::ComplexType/;
  1         3  
  1         1047  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::ReportRequest - a data object to represent a ReportRequest.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             contextID
18             dataGrouping
19             dateRange
20             endDate
21             reportCurrency
22             reportName
23             startDate
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             contextID
56             dataGrouping
57             dateRange
58             endDate
59             reportCurrency
60             reportName
61             startDate
62              
63             =back
64              
65             =head2 get (read only) methods
66              
67             =over 8
68              
69              
70             =back
71              
72             =cut
73