File Coverage

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