1 package org.oxerr.stubhub.client.model;
2
3 import java.math.BigDecimal;
4 import java.time.OffsetDateTime;
5 import java.util.List;
6
7 public class InventoryCreateRequest {
8
9 private String currencyCode;
10
11 private BigDecimal unitCost;
12
13 private BigDecimal expectedValue;
14
15 private BigDecimal taxPaid;
16
17 private BigDecimal faceValueCost;
18
19 private String deliveryType;
20
21 private BigDecimal deliveryCost;
22
23 private EventRequest event;
24
25 private EventMappingRequest eventMapping;
26
27 private String primaryEventId;
28
29 private OffsetDateTime inHandAt;
30
31 private String splitType;
32
33 private Integer maxDisplayQuantity;
34
35 private PurchaseSeatingRequest seating;
36
37 private Integer ticketCount;
38
39 private List<ListingNoteRequest> listingNotes;
40
41 private Boolean autoBroadcast;
42
43 private String internalNotes;
44
45 private String preDeliveryState;
46
47 private String externalId;
48
49 private List<TagRequest> tags;
50
51 private InventoryAdminHoldRequest adminHold;
52
53 private Boolean zoneFill;
54
55 private InventoryPricingSettingRequest pricingSetting;
56
57 private UpdateListingPricingSettingsRequest autoPricingSettings;
58
59 public String getCurrencyCode() {
60 return currencyCode;
61 }
62
63 public void setCurrencyCode(String currencyCode) {
64 this.currencyCode = currencyCode;
65 }
66
67 public BigDecimal getUnitCost() {
68 return unitCost;
69 }
70
71 public void setUnitCost(BigDecimal unitCost) {
72 this.unitCost = unitCost;
73 }
74
75 public BigDecimal getExpectedValue() {
76 return expectedValue;
77 }
78
79 public void setExpectedValue(BigDecimal expectedValue) {
80 this.expectedValue = expectedValue;
81 }
82
83 public BigDecimal getTaxPaid() {
84 return taxPaid;
85 }
86
87 public void setTaxPaid(BigDecimal taxPaid) {
88 this.taxPaid = taxPaid;
89 }
90
91 public BigDecimal getFaceValueCost() {
92 return faceValueCost;
93 }
94
95 public void setFaceValueCost(BigDecimal faceValueCost) {
96 this.faceValueCost = faceValueCost;
97 }
98
99 public String getDeliveryType() {
100 return deliveryType;
101 }
102
103 public void setDeliveryType(String deliveryType) {
104 this.deliveryType = deliveryType;
105 }
106
107 public BigDecimal getDeliveryCost() {
108 return deliveryCost;
109 }
110
111 public void setDeliveryCost(BigDecimal deliveryCost) {
112 this.deliveryCost = deliveryCost;
113 }
114
115 public EventRequest getEvent() {
116 return event;
117 }
118
119 public void setEvent(EventRequest event) {
120 this.event = event;
121 }
122
123 public EventMappingRequest getEventMapping() {
124 return eventMapping;
125 }
126
127 public void setEventMapping(EventMappingRequest eventMapping) {
128 this.eventMapping = eventMapping;
129 }
130
131 public String getPrimaryEventId() {
132 return primaryEventId;
133 }
134
135 public void setPrimaryEventId(String primaryEventId) {
136 this.primaryEventId = primaryEventId;
137 }
138
139 public OffsetDateTime getInHandAt() {
140 return inHandAt;
141 }
142
143 public void setInHandAt(OffsetDateTime inHandAt) {
144 this.inHandAt = inHandAt;
145 }
146
147 public String getSplitType() {
148 return splitType;
149 }
150
151 public void setSplitType(String splitType) {
152 this.splitType = splitType;
153 }
154
155 public Integer getMaxDisplayQuantity() {
156 return maxDisplayQuantity;
157 }
158
159 public void setMaxDisplayQuantity(Integer maxDisplayQuantity) {
160 this.maxDisplayQuantity = maxDisplayQuantity;
161 }
162
163 public PurchaseSeatingRequest getSeating() {
164 return seating;
165 }
166
167 public void setSeating(PurchaseSeatingRequest seating) {
168 this.seating = seating;
169 }
170
171 public Integer getTicketCount() {
172 return ticketCount;
173 }
174
175 public void setTicketCount(Integer ticketCount) {
176 this.ticketCount = ticketCount;
177 }
178
179 public List<ListingNoteRequest> getListingNotes() {
180 return listingNotes;
181 }
182
183 public void setListingNotes(List<ListingNoteRequest> listingNotes) {
184 this.listingNotes = listingNotes;
185 }
186
187 public Boolean getAutoBroadcast() {
188 return autoBroadcast;
189 }
190
191 public void setAutoBroadcast(Boolean autoBroadcast) {
192 this.autoBroadcast = autoBroadcast;
193 }
194
195 public String getInternalNotes() {
196 return internalNotes;
197 }
198
199 public void setInternalNotes(String internalNotes) {
200 this.internalNotes = internalNotes;
201 }
202
203 public String getPreDeliveryState() {
204 return preDeliveryState;
205 }
206
207 public void setPreDeliveryState(String preDeliveryState) {
208 this.preDeliveryState = preDeliveryState;
209 }
210
211 public String getExternalId() {
212 return externalId;
213 }
214
215 public void setExternalId(String externalId) {
216 this.externalId = externalId;
217 }
218
219 public List<TagRequest> getTags() {
220 return tags;
221 }
222
223 public void setTags(List<TagRequest> tags) {
224 this.tags = tags;
225 }
226
227 public InventoryAdminHoldRequest getAdminHold() {
228 return adminHold;
229 }
230
231 public void setAdminHold(InventoryAdminHoldRequest adminHold) {
232 this.adminHold = adminHold;
233 }
234
235 public Boolean getZoneFill() {
236 return zoneFill;
237 }
238
239 public void setZoneFill(Boolean zoneFill) {
240 this.zoneFill = zoneFill;
241 }
242
243 public InventoryPricingSettingRequest getPricingSetting() {
244 return pricingSetting;
245 }
246
247 public void setPricingSetting(InventoryPricingSettingRequest pricingSetting) {
248 this.pricingSetting = pricingSetting;
249 }
250
251 public UpdateListingPricingSettingsRequest getAutoPricingSettings() {
252 return autoPricingSettings;
253 }
254
255 public void setAutoPricingSettings(UpdateListingPricingSettingsRequest autoPricingSettings) {
256 this.autoPricingSettings = autoPricingSettings;
257 }
258
259 }