File Coverage

blib/lib/Yahoo/Marketing/AdGroup.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::AdGroup;
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 3     3   225253 use strict; use warnings;
  3     3   7  
  3         110  
  3         15  
  3         6  
  3         95  
6              
7 3     3   15 use base qw/Yahoo::Marketing::ComplexType/;
  3         6  
  3         1236  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::AdGroup - an object to represent a Yahoo Marketing AdGroup.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             ID
18             accountID
19             advancedMatchON
20             adAutoOptimizationON
21             campaignID
22             carrierConfig
23             contentMatchMaxBid
24             contentMatchON
25             name
26             sponsoredSearchMaxBid
27             sponsoredSearchON
28             status
29             watchON
30             / );
31             }
32              
33             sub _read_only_attributes {
34             return ( qw/
35             contentMatchBidStatus
36             contentMatchMaxBidTimestamp
37             contentMatchMinBid
38             createTimestamp
39             deleteTimestamp
40             lastUpdateTimestamp
41             sponsoredSearchMaxBidTimestamp
42             / );
43             }
44              
45             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
46             __PACKAGE__->_read_only_attributes
47             );
48              
49              
50             1;
51             =head1 SYNOPSIS
52              
53             See L for documentation of the various data objects.
54              
55              
56             =cut
57              
58             =head1 METHODS
59              
60             =head2 new
61              
62             Creates a new instance
63              
64             =head2 get/set methods
65              
66             =over 8
67              
68             ID
69             accountID
70             advancedMatchON
71             campaignID
72             carrierConfig
73             contentMatchMaxBid
74             contentMatchON
75             name
76             sponsoredSearchMaxBid
77             sponsoredSearchON
78             status
79             watchON
80              
81             =back
82              
83             =head2 get (read only) methods
84              
85             =over 8
86              
87             adAutoOptimizationON
88             contentMatchBidStatus
89             contentMatchMaxBidTimestamp
90             contentMatchMinBid
91             createTimestamp
92             deleteTimestamp
93             lastUpdateTimestamp
94             sponsoredSearchMaxBidTimestamp
95              
96             =back
97              
98             =cut
99