File Coverage

blib/lib/Yahoo/Marketing/APT/BaseRate.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::BaseRate;
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   61213 use strict; use warnings;
  1     1   2  
  1         41  
  1         5  
  1         2  
  1         33  
6              
7 1     1   5 use base qw/Yahoo::Marketing::ComplexType/;
  1         2  
  1         1098  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::BaseRate - a data object to represent a BaseRate.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             ID
18             endDate
19             floorCPM
20             listCPM
21             listFloorPercentageMarkup
22             rateCardID
23             startDate
24             targetCPM
25             targetFloorPercentageMarkup
26             targetingAttributeDescriptorsWithAny
27             / );
28             }
29              
30             sub _read_only_attributes {
31             return ( qw/
32             / );
33             }
34              
35             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
36             __PACKAGE__->_read_only_attributes
37             );
38              
39              
40             1;
41             =head1 SYNOPSIS
42              
43             See L for documentation of the various data objects.
44              
45              
46             =cut
47              
48             =head1 METHODS
49              
50             =head2 new
51              
52             Creates a new instance
53              
54             =head2 get/set methods
55              
56             =over 8
57              
58             ID
59             endDate
60             floorCPM
61             listCPM
62             listFloorPercentageMarkup
63             rateCardID
64             startDate
65             targetCPM
66             targetFloorPercentageMarkup
67             targetingAttributeDescriptorsWithAny
68              
69             =back
70              
71             =head2 get (read only) methods
72              
73             =over 8
74              
75              
76             =back
77              
78             =cut
79