line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
#!/usr/bin/perl |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package eBay::API::XML::DataType::ReviseStatusType; |
4
|
|
|
|
|
|
|
|
5
|
1
|
|
|
1
|
|
1276
|
use strict; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
36
|
|
6
|
1
|
|
|
1
|
|
4
|
use warnings; |
|
1
|
|
|
|
|
2
|
|
|
1
|
|
|
|
|
40
|
|
7
|
|
|
|
|
|
|
|
8
|
|
|
|
|
|
|
########################################################################## |
9
|
|
|
|
|
|
|
# |
10
|
|
|
|
|
|
|
# Module: ............... eBay/API/XML |
11
|
|
|
|
|
|
|
# File: ................. ReviseStatusType.pm |
12
|
|
|
|
|
|
|
# Generated by: ......... genEBayApiDataTypes.pl |
13
|
|
|
|
|
|
|
# Last Generated: ....... 08/24/2008 16:44 |
14
|
|
|
|
|
|
|
# API Release Number: ... 579 |
15
|
|
|
|
|
|
|
# |
16
|
|
|
|
|
|
|
########################################################################## |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
=head1 NAME |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
eBay::API::XML::DataType::ReviseStatusType |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=head1 DESCRIPTION |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
Contains data indicating whether an item has been revised since the |
25
|
|
|
|
|
|
|
listing became active and, if so, which among a subset of properties |
26
|
|
|
|
|
|
|
have been changed by the revision. |
27
|
|
|
|
|
|
|
Output only. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
=head1 SYNOPSIS |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=cut |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
=head1 INHERITANCE |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
eBay::API::XML::DataType::ReviseStatusType inherits from the L class |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=cut |
41
|
|
|
|
|
|
|
|
42
|
1
|
|
|
1
|
|
41
|
use eBay::API::XML::BaseDataType; |
|
0
|
|
|
|
|
|
|
|
0
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
our @ISA = ("eBay::API::XML::BaseDataType"); |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
my @gaProperties = ( [ 'BuyItNowAdded', 'xs:boolean', '', '', '' ] |
48
|
|
|
|
|
|
|
, [ 'BuyItNowLowered', 'xs:boolean', '', '', '' ] |
49
|
|
|
|
|
|
|
, [ 'ItemRevised', 'xs:boolean', '', '', '' ] |
50
|
|
|
|
|
|
|
, [ 'ReserveLowered', 'xs:boolean', '', '', '' ] |
51
|
|
|
|
|
|
|
, [ 'ReserveRemoved', 'xs:boolean', '', '', '' ] |
52
|
|
|
|
|
|
|
); |
53
|
|
|
|
|
|
|
push @gaProperties, @{eBay::API::XML::BaseDataType::getPropertiesList()}; |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
my @gaAttributes = ( |
56
|
|
|
|
|
|
|
); |
57
|
|
|
|
|
|
|
push @gaAttributes, @{eBay::API::XML::BaseDataType::getAttributesList()}; |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head1 Subroutines: |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=cut |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
sub new { |
64
|
|
|
|
|
|
|
my $classname = shift; |
65
|
|
|
|
|
|
|
my %args = @_; |
66
|
|
|
|
|
|
|
my $self = $classname->SUPER::new(%args); |
67
|
|
|
|
|
|
|
return $self; |
68
|
|
|
|
|
|
|
} |
69
|
|
|
|
|
|
|
|
70
|
|
|
|
|
|
|
sub isScalar { |
71
|
|
|
|
|
|
|
return 0; |
72
|
|
|
|
|
|
|
} |
73
|
|
|
|
|
|
|
|
74
|
|
|
|
|
|
|
|
75
|
|
|
|
|
|
|
|
76
|
|
|
|
|
|
|
=head2 setBuyItNowAdded() |
77
|
|
|
|
|
|
|
|
78
|
|
|
|
|
|
|
If true, indicates that a Buy It Now Price was added for the item. |
79
|
|
|
|
|
|
|
Only applicable to US eBay Motors items. |
80
|
|
|
|
|
|
|
Output only. |
81
|
|
|
|
|
|
|
|
82
|
|
|
|
|
|
|
# Argument: 'xs:boolean' |
83
|
|
|
|
|
|
|
|
84
|
|
|
|
|
|
|
=cut |
85
|
|
|
|
|
|
|
|
86
|
|
|
|
|
|
|
sub setBuyItNowAdded { |
87
|
|
|
|
|
|
|
my $self = shift; |
88
|
|
|
|
|
|
|
$self->{'BuyItNowAdded'} = shift |
89
|
|
|
|
|
|
|
} |
90
|
|
|
|
|
|
|
|
91
|
|
|
|
|
|
|
=head2 isBuyItNowAdded() |
92
|
|
|
|
|
|
|
|
93
|
|
|
|
|
|
|
Calls: GetBidderList |
94
|
|
|
|
|
|
|
Returned: Conditionally |
95
|
|
|
|
|
|
|
|
96
|
|
|
|
|
|
|
Calls: GetItem |
97
|
|
|
|
|
|
|
Returned: Always |
98
|
|
|
|
|
|
|
Details: DetailLevel: none, ItemReturnDescription, ItemReturnAttributes, ReturnAll |
99
|
|
|
|
|
|
|
|
100
|
|
|
|
|
|
|
# Returns: 'xs:boolean' |
101
|
|
|
|
|
|
|
|
102
|
|
|
|
|
|
|
=cut |
103
|
|
|
|
|
|
|
|
104
|
|
|
|
|
|
|
sub isBuyItNowAdded { |
105
|
|
|
|
|
|
|
my $self = shift; |
106
|
|
|
|
|
|
|
return $self->{'BuyItNowAdded'}; |
107
|
|
|
|
|
|
|
} |
108
|
|
|
|
|
|
|
|
109
|
|
|
|
|
|
|
|
110
|
|
|
|
|
|
|
=head2 setBuyItNowLowered() |
111
|
|
|
|
|
|
|
|
112
|
|
|
|
|
|
|
If true, indicates that the item's Buy It Now price was lowered. |
113
|
|
|
|
|
|
|
Only applicable to US eBay Motors items. |
114
|
|
|
|
|
|
|
Output only. |
115
|
|
|
|
|
|
|
|
116
|
|
|
|
|
|
|
# Argument: 'xs:boolean' |
117
|
|
|
|
|
|
|
|
118
|
|
|
|
|
|
|
=cut |
119
|
|
|
|
|
|
|
|
120
|
|
|
|
|
|
|
sub setBuyItNowLowered { |
121
|
|
|
|
|
|
|
my $self = shift; |
122
|
|
|
|
|
|
|
$self->{'BuyItNowLowered'} = shift |
123
|
|
|
|
|
|
|
} |
124
|
|
|
|
|
|
|
|
125
|
|
|
|
|
|
|
=head2 isBuyItNowLowered() |
126
|
|
|
|
|
|
|
|
127
|
|
|
|
|
|
|
Calls: GetBidderList |
128
|
|
|
|
|
|
|
Returned: Conditionally |
129
|
|
|
|
|
|
|
|
130
|
|
|
|
|
|
|
Calls: GetItem |
131
|
|
|
|
|
|
|
Returned: Always |
132
|
|
|
|
|
|
|
Details: DetailLevel: none, ItemReturnDescription, ItemReturnAttributes, ReturnAll |
133
|
|
|
|
|
|
|
|
134
|
|
|
|
|
|
|
# Returns: 'xs:boolean' |
135
|
|
|
|
|
|
|
|
136
|
|
|
|
|
|
|
=cut |
137
|
|
|
|
|
|
|
|
138
|
|
|
|
|
|
|
sub isBuyItNowLowered { |
139
|
|
|
|
|
|
|
my $self = shift; |
140
|
|
|
|
|
|
|
return $self->{'BuyItNowLowered'}; |
141
|
|
|
|
|
|
|
} |
142
|
|
|
|
|
|
|
|
143
|
|
|
|
|
|
|
|
144
|
|
|
|
|
|
|
=head2 setItemRevised() |
145
|
|
|
|
|
|
|
|
146
|
|
|
|
|
|
|
If true, indicates the item was revised since the listing became |
147
|
|
|
|
|
|
|
active. |
148
|
|
|
|
|
|
|
Output only. |
149
|
|
|
|
|
|
|
|
150
|
|
|
|
|
|
|
# Argument: 'xs:boolean' |
151
|
|
|
|
|
|
|
|
152
|
|
|
|
|
|
|
=cut |
153
|
|
|
|
|
|
|
|
154
|
|
|
|
|
|
|
sub setItemRevised { |
155
|
|
|
|
|
|
|
my $self = shift; |
156
|
|
|
|
|
|
|
$self->{'ItemRevised'} = shift |
157
|
|
|
|
|
|
|
} |
158
|
|
|
|
|
|
|
|
159
|
|
|
|
|
|
|
=head2 isItemRevised() |
160
|
|
|
|
|
|
|
|
161
|
|
|
|
|
|
|
Calls: GetBidderList |
162
|
|
|
|
|
|
|
Returned: Always |
163
|
|
|
|
|
|
|
|
164
|
|
|
|
|
|
|
Calls: GetItem |
165
|
|
|
|
|
|
|
Returned: Always |
166
|
|
|
|
|
|
|
Details: DetailLevel: none, ItemReturnDescription, ItemReturnAttributes, ReturnAll |
167
|
|
|
|
|
|
|
|
168
|
|
|
|
|
|
|
Calls: GetSellerList |
169
|
|
|
|
|
|
|
Returned: Conditionally |
170
|
|
|
|
|
|
|
Details: DetailLevel: ItemReturnDescription, ReturnAll |
171
|
|
|
|
|
|
|
|
172
|
|
|
|
|
|
|
# Returns: 'xs:boolean' |
173
|
|
|
|
|
|
|
|
174
|
|
|
|
|
|
|
=cut |
175
|
|
|
|
|
|
|
|
176
|
|
|
|
|
|
|
sub isItemRevised { |
177
|
|
|
|
|
|
|
my $self = shift; |
178
|
|
|
|
|
|
|
return $self->{'ItemRevised'}; |
179
|
|
|
|
|
|
|
} |
180
|
|
|
|
|
|
|
|
181
|
|
|
|
|
|
|
|
182
|
|
|
|
|
|
|
=head2 setReserveLowered() |
183
|
|
|
|
|
|
|
|
184
|
|
|
|
|
|
|
If true, indicates that the reserve price was lowered for |
185
|
|
|
|
|
|
|
the item. Only applicable to US eBay Motors items. |
186
|
|
|
|
|
|
|
Output only. |
187
|
|
|
|
|
|
|
|
188
|
|
|
|
|
|
|
# Argument: 'xs:boolean' |
189
|
|
|
|
|
|
|
|
190
|
|
|
|
|
|
|
=cut |
191
|
|
|
|
|
|
|
|
192
|
|
|
|
|
|
|
sub setReserveLowered { |
193
|
|
|
|
|
|
|
my $self = shift; |
194
|
|
|
|
|
|
|
$self->{'ReserveLowered'} = shift |
195
|
|
|
|
|
|
|
} |
196
|
|
|
|
|
|
|
|
197
|
|
|
|
|
|
|
=head2 isReserveLowered() |
198
|
|
|
|
|
|
|
|
199
|
|
|
|
|
|
|
Calls: GetBidderList |
200
|
|
|
|
|
|
|
Returned: Conditionally |
201
|
|
|
|
|
|
|
|
202
|
|
|
|
|
|
|
Calls: GetItem |
203
|
|
|
|
|
|
|
Returned: Always |
204
|
|
|
|
|
|
|
Details: DetailLevel: none, ItemReturnDescription, ItemReturnAttributes, ReturnAll |
205
|
|
|
|
|
|
|
|
206
|
|
|
|
|
|
|
# Returns: 'xs:boolean' |
207
|
|
|
|
|
|
|
|
208
|
|
|
|
|
|
|
=cut |
209
|
|
|
|
|
|
|
|
210
|
|
|
|
|
|
|
sub isReserveLowered { |
211
|
|
|
|
|
|
|
my $self = shift; |
212
|
|
|
|
|
|
|
return $self->{'ReserveLowered'}; |
213
|
|
|
|
|
|
|
} |
214
|
|
|
|
|
|
|
|
215
|
|
|
|
|
|
|
|
216
|
|
|
|
|
|
|
=head2 setReserveRemoved() |
217
|
|
|
|
|
|
|
|
218
|
|
|
|
|
|
|
If true, indicates that the reserve price was removed |
219
|
|
|
|
|
|
|
from the item. Only applicable to US eBay Motors items. |
220
|
|
|
|
|
|
|
Output only. |
221
|
|
|
|
|
|
|
|
222
|
|
|
|
|
|
|
# Argument: 'xs:boolean' |
223
|
|
|
|
|
|
|
|
224
|
|
|
|
|
|
|
=cut |
225
|
|
|
|
|
|
|
|
226
|
|
|
|
|
|
|
sub setReserveRemoved { |
227
|
|
|
|
|
|
|
my $self = shift; |
228
|
|
|
|
|
|
|
$self->{'ReserveRemoved'} = shift |
229
|
|
|
|
|
|
|
} |
230
|
|
|
|
|
|
|
|
231
|
|
|
|
|
|
|
=head2 isReserveRemoved() |
232
|
|
|
|
|
|
|
|
233
|
|
|
|
|
|
|
Calls: GetBidderList |
234
|
|
|
|
|
|
|
Returned: Conditionally |
235
|
|
|
|
|
|
|
|
236
|
|
|
|
|
|
|
Calls: GetItem |
237
|
|
|
|
|
|
|
Returned: Always |
238
|
|
|
|
|
|
|
Details: DetailLevel: none, ItemReturnDescription, ItemReturnAttributes, ReturnAll |
239
|
|
|
|
|
|
|
|
240
|
|
|
|
|
|
|
# Returns: 'xs:boolean' |
241
|
|
|
|
|
|
|
|
242
|
|
|
|
|
|
|
=cut |
243
|
|
|
|
|
|
|
|
244
|
|
|
|
|
|
|
sub isReserveRemoved { |
245
|
|
|
|
|
|
|
my $self = shift; |
246
|
|
|
|
|
|
|
return $self->{'ReserveRemoved'}; |
247
|
|
|
|
|
|
|
} |
248
|
|
|
|
|
|
|
|
249
|
|
|
|
|
|
|
|
250
|
|
|
|
|
|
|
|
251
|
|
|
|
|
|
|
|
252
|
|
|
|
|
|
|
|
253
|
|
|
|
|
|
|
## Attribute and Property lists |
254
|
|
|
|
|
|
|
sub getPropertiesList { |
255
|
|
|
|
|
|
|
my $self = shift; |
256
|
|
|
|
|
|
|
return \@gaProperties; |
257
|
|
|
|
|
|
|
} |
258
|
|
|
|
|
|
|
|
259
|
|
|
|
|
|
|
sub getAttributesList { |
260
|
|
|
|
|
|
|
my $self = shift; |
261
|
|
|
|
|
|
|
return \@gaAttributes; |
262
|
|
|
|
|
|
|
} |
263
|
|
|
|
|
|
|
|
264
|
|
|
|
|
|
|
|
265
|
|
|
|
|
|
|
|
266
|
|
|
|
|
|
|
1; |