File Coverage

blib/lib/Yahoo/Marketing/APT/AdjustmentInboundFeed.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::APT::AdjustmentInboundFeed;
2             # Copyright (c) 2010 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 1     1   55547 use strict; use warnings;
  1     1   3  
  1         43  
  1         9  
  1         3  
  1         34  
6              
7 1     1   7 use base qw/Yahoo::Marketing::ComplexType/;
  1         2  
  1         1210  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::AdjustmentInboundFeed - a data object to represent a AdjustmentInboundFeed.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             ID
18             accountID
19             comment
20             downloadURL
21             fileName
22             lastUpdateTimestamp
23             status
24             type
25             uploadTimestamp
26             uploadedByUserID
27             uploadedByUserName
28             / );
29             }
30              
31             sub _read_only_attributes {
32             return ( qw/
33             / );
34             }
35              
36             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
37             __PACKAGE__->_read_only_attributes
38             );
39              
40              
41             1;
42             =head1 SYNOPSIS
43              
44             See L for documentation of the various data objects.
45              
46              
47             =cut
48              
49             =head1 METHODS
50              
51             =head2 new
52              
53             Creates a new instance
54              
55             =head2 get/set methods
56              
57             =over 8
58              
59             ID
60             accountID
61             comment
62             downloadURL
63             fileName
64             lastUpdateTimestamp
65             status
66             type
67             uploadTimestamp
68             uploadedByUserID
69             uploadedByUserName
70              
71             =back
72              
73             =head2 get (read only) methods
74              
75             =over 8
76              
77              
78             =back
79              
80             =cut
81