File Coverage

blib/lib/Yahoo/Marketing/HistoricalRequestData.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::HistoricalRequestData;
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   63554 use strict; use warnings;
  2     2   4  
  2         73  
  2         12  
  2         3  
  2         67  
6              
7 2     2   12 use base qw/Yahoo::Marketing::ComplexType/;
  2         5  
  2         664  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::HistoricalRequestData - an object to represent a Yahoo Marketing HistoricalRequestData.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             accountID
18             endDate
19             marketID
20             matchType
21             startDate
22             targetingAttributes
23             targetingProfile
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             accountID
56             endDate
57             marketID
58             matchType
59             startDate
60             targetingAttributes
61             targetingProfile
62              
63             =back
64              
65             =head2 get (read only) methods
66              
67             =over 8
68              
69              
70             =back
71              
72             =cut
73