File Coverage

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