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