File Coverage

blib/lib/Yahoo/Marketing/APT/AdjustmentOrder.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::AdjustmentOrder;
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   401906 use strict; use warnings;
  1     1   3  
  1         31  
  1         5  
  1         1  
  1         25  
6              
7 1     1   4 use base qw/Yahoo::Marketing::ComplexType/;
  1         1  
  1         758  
8              
9             =head1 NAME
10              
11             Yahoo::Marketing::APT::AdjustmentOrder - a data object to represent a AdjustmentOrder.
12              
13             =cut
14              
15             sub _user_setable_attributes {
16             return ( qw/
17             ID
18             accountID
19             agencyName
20             certificationTimestamp
21             certifiedByUserID
22             certifiedByUserName
23             companyName
24             currency
25             endDate
26             lastReconciliationTimestamp
27             name
28             processingStatus
29             reconciliationMonth
30             salesPersonName
31             startDate
32             thirdPartySource
33             / );
34             }
35              
36             sub _read_only_attributes {
37             return ( qw/
38             / );
39             }
40              
41             __PACKAGE__->mk_accessors( __PACKAGE__->_user_setable_attributes,
42             __PACKAGE__->_read_only_attributes
43             );
44              
45              
46             1;
47             =head1 SYNOPSIS
48              
49             See L for documentation of the various data objects.
50              
51              
52             =cut
53              
54             =head1 METHODS
55              
56             =head2 new
57              
58             Creates a new instance
59              
60             =head2 get/set methods
61              
62             =over 8
63              
64             ID
65             accountID
66             agencyName
67             certificationTimestamp
68             certifiedByUserID
69             certifiedByUserName
70             companyName
71             currency
72             endDate
73             lastReconciliationTimestamp
74             name
75             processingStatus
76             reconciliationMonth
77             salesPersonName
78             startDate
79             thirdPartySource
80              
81             =back
82              
83             =head2 get (read only) methods
84              
85             =over 8
86              
87              
88             =back
89              
90             =cut
91