File Coverage

blib/lib/Yahoo/Marketing/RelatedKeywordRequestType.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::RelatedKeywordRequestType;
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   56588 use strict; use warnings;
  2     2   6  
  2         81  
  2         11  
  2         5  
  2         73  
6              
7 2     2   14 use base qw/Yahoo::Marketing::ComplexType/;
  2         6  
  2         691  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::RelatedKeywordRequestType - an object to represent a Yahoo Marketing RelatedKeywordRequestType.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             excludedKeywords
18             excludedPhraseFilters
19             market
20             maxKeywords
21             negativeKeywords
22             offset
23             positiveKeywords
24             requiredPhraseFilters
25             / );
26             }
27              
28             sub _read_only_attributes {
29             return ( qw/
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             =head2 new
45              
46             Creates a new instance
47              
48             =cut
49              
50             =head1 METHODS
51              
52             =head2 get/set methods
53              
54             =over 8
55              
56             excludedKeywords
57             excludedPhraseFilters
58             market
59             maxKeywords
60             negativeKeywords
61             positiveKeywords
62             requiredPhraseFilters
63              
64             =back
65              
66             =head2 get (read only) methods
67              
68             =over 8
69              
70              
71             =back
72              
73             =cut
74