1 package org.oxerr.stubhub.client.model;
2
3 import java.time.LocalDateTime;
4 import java.time.OffsetDateTime;
5 import java.util.UUID;
6
7 public class EventMappingResponse {
8
9 private UUID eventMappingId;
10
11 private String eventName;
12
13 private LocalDateTime eventDate;
14
15 private OffsetDateTime eventDateUtc;
16
17 private String venueName;
18
19 private Boolean isEventDateConfirmed;
20
21 private String eventNote;
22
23 private String city;
24
25 private String stateProvince;
26
27 private String countryCode;
28
29 private String posEventIds;
30
31 public UUID getEventMappingId() {
32 return eventMappingId;
33 }
34
35 public void setEventMappingId(UUID eventMappingId) {
36 this.eventMappingId = eventMappingId;
37 }
38
39 public String getEventName() {
40 return eventName;
41 }
42
43 public void setEventName(String eventName) {
44 this.eventName = eventName;
45 }
46
47 public LocalDateTime getEventDate() {
48 return eventDate;
49 }
50
51 public void setEventDate(LocalDateTime eventDate) {
52 this.eventDate = eventDate;
53 }
54
55 public OffsetDateTime getEventDateUtc() {
56 return eventDateUtc;
57 }
58
59 public void setEventDateUtc(OffsetDateTime eventDateUtc) {
60 this.eventDateUtc = eventDateUtc;
61 }
62
63 public String getVenueName() {
64 return venueName;
65 }
66
67 public void setVenueName(String venueName) {
68 this.venueName = venueName;
69 }
70
71 public Boolean getIsEventDateConfirmed() {
72 return isEventDateConfirmed;
73 }
74
75 public void setIsEventDateConfirmed(Boolean isEventDateConfirmed) {
76 this.isEventDateConfirmed = isEventDateConfirmed;
77 }
78
79 public String getEventNote() {
80 return eventNote;
81 }
82
83 public void setEventNote(String eventNote) {
84 this.eventNote = eventNote;
85 }
86
87 public String getCity() {
88 return city;
89 }
90
91 public void setCity(String city) {
92 this.city = city;
93 }
94
95 public String getStateProvince() {
96 return stateProvince;
97 }
98
99 public void setStateProvince(String stateProvince) {
100 this.stateProvince = stateProvince;
101 }
102
103 public String getCountryCode() {
104 return countryCode;
105 }
106
107 public void setCountryCode(String countryCode) {
108 this.countryCode = countryCode;
109 }
110
111 public String getPosEventIds() {
112 return posEventIds;
113 }
114
115 public void setPosEventIds(String posEventIds) {
116 this.posEventIds = posEventIds;
117 }
118
119 }