View Javadoc
1   package org.oxerr.stubhub.client.model;
2   
3   import java.math.BigDecimal;
4   import java.time.OffsetDateTime;
5   import java.util.List;
6   import java.util.UUID;
7   
8   public class HoldResponse {
9   
10  	private EventMappingResponse eventMapping;
11  
12  	private EventResponse event;
13  
14  	private VenueResponse venue;
15  
16  	private PerformerResponse performer;
17  
18  	private Long id;
19  
20  	private String marketplaceSaleId;
21  
22  	private String marketplaceListingId;
23  
24  	private Long inventoryId;
25  
26  	private OffsetDateTime inHandAt;
27  
28  	private SeatingResponse seating;
29  
30  	private SeatingResponse marketplaceOriginalSeating;
31  
32  	private BigDecimal totalNetProceeds;
33  
34  	private BigDecimal totalCost;
35  
36  	private BigDecimal totalCharges;
37  
38  	private BigDecimal totalCredits;
39  
40  	private String currencyCode;
41  
42  	private OffsetDateTime saleDate;
43  
44  	private OffsetDateTime updateDate;
45  
46  	private Integer quantitySold;
47  
48  	private Integer quantityWasted;
49  
50  	private String marketplace;
51  
52  	private String stockType;
53  
54  	private List<ListingNoteResponse> listingNotes;
55  
56  	private PosState posState;
57  
58  	private MarketplaceState marketplaceState;
59  
60  	private List<VendorResponse> vendorInfos;
61  
62  	private List<PurchaseVendorAccountResponse> vendorAccounts;
63  
64  	private List<TicketResponse> tickets;
65  
66  	private String paymentStatus;
67  
68  	private String paymentReferenceNumber;
69  
70  	private OffsetDateTime lastPaymentDate;
71  
72  	private String internalNotes;
73  
74  	private TicketHolderResponse ticketHolder;
75  
76  	private List<TagResponse> tags;
77  
78  	private OffsetDateTime createdDate;
79  
80  	private OffsetDateTime fulfillmentDate;
81  
82  	private Long originatedFromListingId;
83  
84  	private OffsetDateTime cancellationDate;
85  
86  	private Integer fulfillmentVersion;
87  
88  	private Integer marketplaceFulfillmentVersion;
89  
90  	private String externalId;
91  
92  	private UUID fulfillmentUserId;
93  
94  	private Boolean autoFulfill;
95  
96  	private UUID sellerAccountId;
97  
98  	private List<BuyerCommission> buyerCommissionOverride;
99  
100 	private BigDecimal originalNetProceedsAmount;
101 
102 	private String originalNetProceedsCurrency;
103 
104 	private OffsetDateTime expirationDate;
105 
106 	public EventMappingResponse getEventMapping() {
107 		return eventMapping;
108 	}
109 
110 	public void setEventMapping(EventMappingResponse eventMapping) {
111 		this.eventMapping = eventMapping;
112 	}
113 
114 	public EventResponse getEvent() {
115 		return event;
116 	}
117 
118 	public void setEvent(EventResponse event) {
119 		this.event = event;
120 	}
121 
122 	public VenueResponse getVenue() {
123 		return venue;
124 	}
125 
126 	public void setVenue(VenueResponse venue) {
127 		this.venue = venue;
128 	}
129 
130 	public PerformerResponse getPerformer() {
131 		return performer;
132 	}
133 
134 	public void setPerformer(PerformerResponse performer) {
135 		this.performer = performer;
136 	}
137 
138 	public Long getId() {
139 		return id;
140 	}
141 
142 	public void setId(Long id) {
143 		this.id = id;
144 	}
145 
146 	public String getMarketplaceSaleId() {
147 		return marketplaceSaleId;
148 	}
149 
150 	public void setMarketplaceSaleId(String marketplaceSaleId) {
151 		this.marketplaceSaleId = marketplaceSaleId;
152 	}
153 
154 	public String getMarketplaceListingId() {
155 		return marketplaceListingId;
156 	}
157 
158 	public void setMarketplaceListingId(String marketplaceListingId) {
159 		this.marketplaceListingId = marketplaceListingId;
160 	}
161 
162 	public Long getInventoryId() {
163 		return inventoryId;
164 	}
165 
166 	public void setInventoryId(Long inventoryId) {
167 		this.inventoryId = inventoryId;
168 	}
169 
170 	public OffsetDateTime getInHandAt() {
171 		return inHandAt;
172 	}
173 
174 	public void setInHandAt(OffsetDateTime inHandAt) {
175 		this.inHandAt = inHandAt;
176 	}
177 
178 	public SeatingResponse getSeating() {
179 		return seating;
180 	}
181 
182 	public void setSeating(SeatingResponse seating) {
183 		this.seating = seating;
184 	}
185 
186 	public SeatingResponse getMarketplaceOriginalSeating() {
187 		return marketplaceOriginalSeating;
188 	}
189 
190 	public void setMarketplaceOriginalSeating(SeatingResponse marketplaceOriginalSeating) {
191 		this.marketplaceOriginalSeating = marketplaceOriginalSeating;
192 	}
193 
194 	public BigDecimal getTotalNetProceeds() {
195 		return totalNetProceeds;
196 	}
197 
198 	public void setTotalNetProceeds(BigDecimal totalNetProceeds) {
199 		this.totalNetProceeds = totalNetProceeds;
200 	}
201 
202 	public BigDecimal getTotalCost() {
203 		return totalCost;
204 	}
205 
206 	public void setTotalCost(BigDecimal totalCost) {
207 		this.totalCost = totalCost;
208 	}
209 
210 	public BigDecimal getTotalCharges() {
211 		return totalCharges;
212 	}
213 
214 	public void setTotalCharges(BigDecimal totalCharges) {
215 		this.totalCharges = totalCharges;
216 	}
217 
218 	public BigDecimal getTotalCredits() {
219 		return totalCredits;
220 	}
221 
222 	public void setTotalCredits(BigDecimal totalCredits) {
223 		this.totalCredits = totalCredits;
224 	}
225 
226 	public String getCurrencyCode() {
227 		return currencyCode;
228 	}
229 
230 	public void setCurrencyCode(String currencyCode) {
231 		this.currencyCode = currencyCode;
232 	}
233 
234 	public OffsetDateTime getSaleDate() {
235 		return saleDate;
236 	}
237 
238 	public void setSaleDate(OffsetDateTime saleDate) {
239 		this.saleDate = saleDate;
240 	}
241 
242 	public OffsetDateTime getUpdateDate() {
243 		return updateDate;
244 	}
245 
246 	public void setUpdateDate(OffsetDateTime updateDate) {
247 		this.updateDate = updateDate;
248 	}
249 
250 	public Integer getQuantitySold() {
251 		return quantitySold;
252 	}
253 
254 	public void setQuantitySold(Integer quantitySold) {
255 		this.quantitySold = quantitySold;
256 	}
257 
258 	public Integer getQuantityWasted() {
259 		return quantityWasted;
260 	}
261 
262 	public void setQuantityWasted(Integer quantityWasted) {
263 		this.quantityWasted = quantityWasted;
264 	}
265 
266 	public String getMarketplace() {
267 		return marketplace;
268 	}
269 
270 	public void setMarketplace(String marketplace) {
271 		this.marketplace = marketplace;
272 	}
273 
274 	public String getStockType() {
275 		return stockType;
276 	}
277 
278 	public void setStockType(String stockType) {
279 		this.stockType = stockType;
280 	}
281 
282 	public List<ListingNoteResponse> getListingNotes() {
283 		return listingNotes;
284 	}
285 
286 	public void setListingNotes(List<ListingNoteResponse> listingNotes) {
287 		this.listingNotes = listingNotes;
288 	}
289 
290 	public PosState getPosState() {
291 		return posState;
292 	}
293 
294 	public void setPosState(PosState posState) {
295 		this.posState = posState;
296 	}
297 
298 	public MarketplaceState getMarketplaceState() {
299 		return marketplaceState;
300 	}
301 
302 	public void setMarketplaceState(MarketplaceState marketplaceState) {
303 		this.marketplaceState = marketplaceState;
304 	}
305 
306 	public List<VendorResponse> getVendorInfos() {
307 		return vendorInfos;
308 	}
309 
310 	public void setVendorInfos(List<VendorResponse> vendorInfos) {
311 		this.vendorInfos = vendorInfos;
312 	}
313 
314 	public List<PurchaseVendorAccountResponse> getVendorAccounts() {
315 		return vendorAccounts;
316 	}
317 
318 	public void setVendorAccounts(List<PurchaseVendorAccountResponse> vendorAccounts) {
319 		this.vendorAccounts = vendorAccounts;
320 	}
321 
322 	public List<TicketResponse> getTickets() {
323 		return tickets;
324 	}
325 
326 	public void setTickets(List<TicketResponse> tickets) {
327 		this.tickets = tickets;
328 	}
329 
330 	public String getPaymentStatus() {
331 		return paymentStatus;
332 	}
333 
334 	public void setPaymentStatus(String paymentStatus) {
335 		this.paymentStatus = paymentStatus;
336 	}
337 
338 	public String getPaymentReferenceNumber() {
339 		return paymentReferenceNumber;
340 	}
341 
342 	public void setPaymentReferenceNumber(String paymentReferenceNumber) {
343 		this.paymentReferenceNumber = paymentReferenceNumber;
344 	}
345 
346 	public OffsetDateTime getLastPaymentDate() {
347 		return lastPaymentDate;
348 	}
349 
350 	public void setLastPaymentDate(OffsetDateTime lastPaymentDate) {
351 		this.lastPaymentDate = lastPaymentDate;
352 	}
353 
354 	public String getInternalNotes() {
355 		return internalNotes;
356 	}
357 
358 	public void setInternalNotes(String internalNotes) {
359 		this.internalNotes = internalNotes;
360 	}
361 
362 	public TicketHolderResponse getTicketHolder() {
363 		return ticketHolder;
364 	}
365 
366 	public void setTicketHolder(TicketHolderResponse ticketHolder) {
367 		this.ticketHolder = ticketHolder;
368 	}
369 
370 	public List<TagResponse> getTags() {
371 		return tags;
372 	}
373 
374 	public void setTags(List<TagResponse> tags) {
375 		this.tags = tags;
376 	}
377 
378 	public OffsetDateTime getCreatedDate() {
379 		return createdDate;
380 	}
381 
382 	public void setCreatedDate(OffsetDateTime createdDate) {
383 		this.createdDate = createdDate;
384 	}
385 
386 	public OffsetDateTime getFulfillmentDate() {
387 		return fulfillmentDate;
388 	}
389 
390 	public void setFulfillmentDate(OffsetDateTime fulfillmentDate) {
391 		this.fulfillmentDate = fulfillmentDate;
392 	}
393 
394 	public Long getOriginatedFromListingId() {
395 		return originatedFromListingId;
396 	}
397 
398 	public void setOriginatedFromListingId(Long originatedFromListingId) {
399 		this.originatedFromListingId = originatedFromListingId;
400 	}
401 
402 	public OffsetDateTime getCancellationDate() {
403 		return cancellationDate;
404 	}
405 
406 	public void setCancellationDate(OffsetDateTime cancellationDate) {
407 		this.cancellationDate = cancellationDate;
408 	}
409 
410 	public Integer getFulfillmentVersion() {
411 		return fulfillmentVersion;
412 	}
413 
414 	public void setFulfillmentVersion(Integer fulfillmentVersion) {
415 		this.fulfillmentVersion = fulfillmentVersion;
416 	}
417 
418 	public Integer getMarketplaceFulfillmentVersion() {
419 		return marketplaceFulfillmentVersion;
420 	}
421 
422 	public void setMarketplaceFulfillmentVersion(Integer marketplaceFulfillmentVersion) {
423 		this.marketplaceFulfillmentVersion = marketplaceFulfillmentVersion;
424 	}
425 
426 	public String getExternalId() {
427 		return externalId;
428 	}
429 
430 	public void setExternalId(String externalId) {
431 		this.externalId = externalId;
432 	}
433 
434 	public UUID getFulfillmentUserId() {
435 		return fulfillmentUserId;
436 	}
437 
438 	public void setFulfillmentUserId(UUID fulfillmentUserId) {
439 		this.fulfillmentUserId = fulfillmentUserId;
440 	}
441 
442 	public Boolean getAutoFulfill() {
443 		return autoFulfill;
444 	}
445 
446 	public void setAutoFulfill(Boolean autoFulfill) {
447 		this.autoFulfill = autoFulfill;
448 	}
449 
450 	public UUID getSellerAccountId() {
451 		return sellerAccountId;
452 	}
453 
454 	public void setSellerAccountId(UUID sellerAccountId) {
455 		this.sellerAccountId = sellerAccountId;
456 	}
457 
458 	public List<BuyerCommission> getBuyerCommissionOverride() {
459 		return buyerCommissionOverride;
460 	}
461 
462 	public void setBuyerCommissionOverride(List<BuyerCommission> buyerCommissionOverride) {
463 		this.buyerCommissionOverride = buyerCommissionOverride;
464 	}
465 
466 	public BigDecimal getOriginalNetProceedsAmount() {
467 		return originalNetProceedsAmount;
468 	}
469 
470 	public void setOriginalNetProceedsAmount(BigDecimal originalNetProceedsAmount) {
471 		this.originalNetProceedsAmount = originalNetProceedsAmount;
472 	}
473 
474 	public String getOriginalNetProceedsCurrency() {
475 		return originalNetProceedsCurrency;
476 	}
477 
478 	public void setOriginalNetProceedsCurrency(String originalNetProceedsCurrency) {
479 		this.originalNetProceedsCurrency = originalNetProceedsCurrency;
480 	}
481 
482 	public OffsetDateTime getExpirationDate() {
483 		return expirationDate;
484 	}
485 
486 	public void setExpirationDate(OffsetDateTime expirationDate) {
487 		this.expirationDate = expirationDate;
488 	}
489 
490 }