File Coverage

blib/lib/Yahoo/Marketing/ForecastRequestData.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::ForecastRequestData;
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   54622 use strict; use warnings;
  2     2   5  
  2         80  
  2         11  
  2         4  
  2         69  
6              
7 2     2   12 use base qw/Yahoo::Marketing::ComplexType/;
  2         4  
  2         729  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::ForecastRequestData - an object to represent a Yahoo Marketing ForecastRequestData.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             accountID
18             contentMatchMaxBid
19             geoTargets
20             marketID
21             matchTypes
22             regionWOEIDs
23             sponsoredSearchMaxBid
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             =head2 new
44              
45             Creates a new instance
46              
47             =cut
48              
49             =head1 METHODS
50              
51             =head2 get/set methods
52              
53             =over 8
54              
55             accountID
56             contentMatchMaxBid
57             geoTargets
58             marketID
59             matchTypes
60             regionWOEIDs
61             sponsoredSearchMaxBid
62              
63             =back
64              
65             =head2 get (read only) methods
66              
67             =over 8
68              
69              
70             =back
71              
72             =cut
73