File Coverage

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