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 TicketGroupResponse {
8
9 private EventMappingResponse eventMapping;
10
11 private EventResponse event;
12
13 private VenueResponse venue;
14
15 private PerformerResponse performer;
16
17 private Long id;
18
19 private OffsetDateTime inHandAt;
20
21 private SeatingResponse seating;
22
23 private Integer ticketCount;
24
25 private List<ListingNoteResponse> listingNotes;
26
27 private List<TicketResponse> tickets;
28
29 private String currencyCode;
30
31 private BigDecimal unitCost;
32
33 private BigDecimal totalCost;
34
35 private BigDecimal expectedValue;
36
37 private BigDecimal taxPaid;
38
39 private Boolean isFaceValueCost;
40
41 private BigDecimal faceValueCost;
42
43 private String deliveryType;
44
45 private BigDecimal deliveryCost;
46
47 private String externalId;
48
49 private List<TagResponse> tags;
50
51 private BigDecimal totalEstimatedCost;
52
53 private String totalEstimatedCostCurrency;
54
55 public EventMappingResponse getEventMapping() {
56 return eventMapping;
57 }
58
59 public void setEventMapping(EventMappingResponse eventMapping) {
60 this.eventMapping = eventMapping;
61 }
62
63 public EventResponse getEvent() {
64 return event;
65 }
66
67 public void setEvent(EventResponse event) {
68 this.event = event;
69 }
70
71 public VenueResponse getVenue() {
72 return venue;
73 }
74
75 public void setVenue(VenueResponse venue) {
76 this.venue = venue;
77 }
78
79 public PerformerResponse getPerformer() {
80 return performer;
81 }
82
83 public void setPerformer(PerformerResponse performer) {
84 this.performer = performer;
85 }
86
87 public Long getId() {
88 return id;
89 }
90
91 public void setId(Long id) {
92 this.id = id;
93 }
94
95 public OffsetDateTime getInHandAt() {
96 return inHandAt;
97 }
98
99 public void setInHandAt(OffsetDateTime inHandAt) {
100 this.inHandAt = inHandAt;
101 }
102
103 public SeatingResponse getSeating() {
104 return seating;
105 }
106
107 public void setSeating(SeatingResponse seating) {
108 this.seating = seating;
109 }
110
111 public Integer getTicketCount() {
112 return ticketCount;
113 }
114
115 public void setTicketCount(Integer ticketCount) {
116 this.ticketCount = ticketCount;
117 }
118
119 public List<ListingNoteResponse> getListingNotes() {
120 return listingNotes;
121 }
122
123 public void setListingNotes(List<ListingNoteResponse> listingNotes) {
124 this.listingNotes = listingNotes;
125 }
126
127 public List<TicketResponse> getTickets() {
128 return tickets;
129 }
130
131 public void setTickets(List<TicketResponse> tickets) {
132 this.tickets = tickets;
133 }
134
135 public String getCurrencyCode() {
136 return currencyCode;
137 }
138
139 public void setCurrencyCode(String currencyCode) {
140 this.currencyCode = currencyCode;
141 }
142
143 public BigDecimal getUnitCost() {
144 return unitCost;
145 }
146
147 public void setUnitCost(BigDecimal unitCost) {
148 this.unitCost = unitCost;
149 }
150
151 public BigDecimal getTotalCost() {
152 return totalCost;
153 }
154
155 public void setTotalCost(BigDecimal totalCost) {
156 this.totalCost = totalCost;
157 }
158
159 public BigDecimal getExpectedValue() {
160 return expectedValue;
161 }
162
163 public void setExpectedValue(BigDecimal expectedValue) {
164 this.expectedValue = expectedValue;
165 }
166
167 public BigDecimal getTaxPaid() {
168 return taxPaid;
169 }
170
171 public void setTaxPaid(BigDecimal taxPaid) {
172 this.taxPaid = taxPaid;
173 }
174
175 public Boolean getIsFaceValueCost() {
176 return isFaceValueCost;
177 }
178
179 public void setIsFaceValueCost(Boolean isFaceValueCost) {
180 this.isFaceValueCost = isFaceValueCost;
181 }
182
183 public BigDecimal getFaceValueCost() {
184 return faceValueCost;
185 }
186
187 public void setFaceValueCost(BigDecimal faceValueCost) {
188 this.faceValueCost = faceValueCost;
189 }
190
191 public String getDeliveryType() {
192 return deliveryType;
193 }
194
195 public void setDeliveryType(String deliveryType) {
196 this.deliveryType = deliveryType;
197 }
198
199 public BigDecimal getDeliveryCost() {
200 return deliveryCost;
201 }
202
203 public void setDeliveryCost(BigDecimal deliveryCost) {
204 this.deliveryCost = deliveryCost;
205 }
206
207 public String getExternalId() {
208 return externalId;
209 }
210
211 public void setExternalId(String externalId) {
212 this.externalId = externalId;
213 }
214
215 public List<TagResponse> getTags() {
216 return tags;
217 }
218
219 public void setTags(List<TagResponse> tags) {
220 this.tags = tags;
221 }
222
223 public BigDecimal getTotalEstimatedCost() {
224 return totalEstimatedCost;
225 }
226
227 public void setTotalEstimatedCost(BigDecimal totalEstimatedCost) {
228 this.totalEstimatedCost = totalEstimatedCost;
229 }
230
231 public String getTotalEstimatedCostCurrency() {
232 return totalEstimatedCostCurrency;
233 }
234
235 public void setTotalEstimatedCostCurrency(String totalEstimatedCostCurrency) {
236 this.totalEstimatedCostCurrency = totalEstimatedCostCurrency;
237 }
238
239 }