File Coverage

blib/lib/Yahoo/Marketing/RelatedKeywordResponseType.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1             package Yahoo::Marketing::RelatedKeywordResponseType;
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   52544 use strict; use warnings;
  2     2   5  
  2         63  
  2         10  
  2         4  
  2         45  
6              
7 2     2   894 use Yahoo::Marketing::RelatedKeywordType;
  0            
  0            
8             use Yahoo::Marketing::ResponseStatusType;
9             use base qw/Yahoo::Marketing::ComplexType/;
10              
11             =head1 NAME
12              
13             Yahoo::Marketing::RelatedKeywordResponseType - an object to represent a Yahoo Marketing RelatedKeywordResponseType.
14              
15             =cut
16              
17             sub _user_setable_attributes {
18             return ( qw/
19             notes
20             relatedKeywords
21             responseStatus
22             / );
23             }
24              
25             sub _read_only_attributes {
26             return ( qw/
27             / );
28             }
29              
30             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
31             __PACKAGE__->_read_only_attributes
32             );
33              
34              
35              
36             1;
37             =head1 SYNOPSIS
38              
39             See L for documentation of the various data objects.
40              
41              
42             =head2 new
43              
44             Creates a new instance
45              
46             =cut
47              
48             =head1 METHODS
49              
50             =head2 get/set methods
51              
52             =over 8
53              
54             notes
55             relatedKeywords
56             responseStatus
57              
58             =back
59              
60             =head2 get (read only) methods
61              
62             =over 8
63              
64              
65             =back
66              
67             =cut
68