View Javadoc
1   package org.oxerr.stubhub.client.model;
2   
3   import java.io.Serializable;
4   import java.time.LocalDateTime;
5   import java.time.OffsetDateTime;
6   import java.util.UUID;
7   
8   import org.apache.commons.lang3.builder.EqualsBuilder;
9   import org.apache.commons.lang3.builder.HashCodeBuilder;
10  import org.apache.commons.lang3.builder.ToStringBuilder;
11  
12  public class EventMappingResponse implements Serializable {
13  
14  	private static final long serialVersionUID = 2026051801L;
15  
16  	private UUID eventMappingId;
17  
18  	private String eventName;
19  
20  	private LocalDateTime eventDate;
21  
22  	private OffsetDateTime eventDateUtc;
23  
24  	private String venueName;
25  
26  	private Boolean isEventDateConfirmed;
27  
28  	private String eventNote;
29  
30  	private String city;
31  
32  	private String stateProvince;
33  
34  	private String countryCode;
35  
36  	private String posEventIds;
37  
38  	public UUID getEventMappingId() {
39  		return eventMappingId;
40  	}
41  
42  	public void setEventMappingId(UUID eventMappingId) {
43  		this.eventMappingId = eventMappingId;
44  	}
45  
46  	public String getEventName() {
47  		return eventName;
48  	}
49  
50  	public void setEventName(String eventName) {
51  		this.eventName = eventName;
52  	}
53  
54  	public LocalDateTime getEventDate() {
55  		return eventDate;
56  	}
57  
58  	public void setEventDate(LocalDateTime eventDate) {
59  		this.eventDate = eventDate;
60  	}
61  
62  	public OffsetDateTime getEventDateUtc() {
63  		return eventDateUtc;
64  	}
65  
66  	public void setEventDateUtc(OffsetDateTime eventDateUtc) {
67  		this.eventDateUtc = eventDateUtc;
68  	}
69  
70  	public String getVenueName() {
71  		return venueName;
72  	}
73  
74  	public void setVenueName(String venueName) {
75  		this.venueName = venueName;
76  	}
77  
78  	public Boolean getIsEventDateConfirmed() {
79  		return isEventDateConfirmed;
80  	}
81  
82  	public void setIsEventDateConfirmed(Boolean isEventDateConfirmed) {
83  		this.isEventDateConfirmed = isEventDateConfirmed;
84  	}
85  
86  	public String getEventNote() {
87  		return eventNote;
88  	}
89  
90  	public void setEventNote(String eventNote) {
91  		this.eventNote = eventNote;
92  	}
93  
94  	public String getCity() {
95  		return city;
96  	}
97  
98  	public void setCity(String city) {
99  		this.city = city;
100 	}
101 
102 	public String getStateProvince() {
103 		return stateProvince;
104 	}
105 
106 	public void setStateProvince(String stateProvince) {
107 		this.stateProvince = stateProvince;
108 	}
109 
110 	public String getCountryCode() {
111 		return countryCode;
112 	}
113 
114 	public void setCountryCode(String countryCode) {
115 		this.countryCode = countryCode;
116 	}
117 
118 	public String getPosEventIds() {
119 		return posEventIds;
120 	}
121 
122 	public void setPosEventIds(String posEventIds) {
123 		this.posEventIds = posEventIds;
124 	}
125 
126 	@Override
127 	public int hashCode() {
128 		return HashCodeBuilder.reflectionHashCode(this);
129 	}
130 
131 	@Override
132 	public boolean equals(Object obj) {
133 		return EqualsBuilder.reflectionEquals(this, obj);
134 	}
135 
136 	@Override
137 	public String toString() {
138 		return ToStringBuilder.reflectionToString(this);
139 	}
140 }