1 package org.oxerr.stubhub.client.model;
2
3 import java.io.Serializable;
4
5 import org.apache.commons.lang3.builder.EqualsBuilder;
6 import org.apache.commons.lang3.builder.HashCodeBuilder;
7 import org.apache.commons.lang3.builder.ToStringBuilder;
8
9 public class VenueResponse implements Serializable {
10
11 private static final long serialVersionUID = 2026051801L;
12
13 private Integer id;
14
15 private String name;
16
17 private String address;
18
19 private String city;
20
21 private String state;
22
23 private String country;
24
25 private String postalCode;
26
27 private String timeZone;
28
29 public Integer getId() {
30 return id;
31 }
32
33 public void setId(Integer id) {
34 this.id = id;
35 }
36
37 public String getName() {
38 return name;
39 }
40
41 public void setName(String name) {
42 this.name = name;
43 }
44
45 public String getAddress() {
46 return address;
47 }
48
49 public void setAddress(String address) {
50 this.address = address;
51 }
52
53 public String getCity() {
54 return city;
55 }
56
57 public void setCity(String city) {
58 this.city = city;
59 }
60
61 public String getState() {
62 return state;
63 }
64
65 public void setState(String state) {
66 this.state = state;
67 }
68
69 public String getCountry() {
70 return country;
71 }
72
73 public void setCountry(String country) {
74 this.country = country;
75 }
76
77 public String getPostalCode() {
78 return postalCode;
79 }
80
81 public void setPostalCode(String postalCode) {
82 this.postalCode = postalCode;
83 }
84
85 public String getTimeZone() {
86 return timeZone;
87 }
88
89 public void setTimeZone(String timeZone) {
90 this.timeZone = timeZone;
91 }
92
93 @Override
94 public int hashCode() {
95 return HashCodeBuilder.reflectionHashCode(this);
96 }
97
98 @Override
99 public boolean equals(Object obj) {
100 return EqualsBuilder.reflectionEquals(this, obj);
101 }
102
103 @Override
104 public String toString() {
105 return ToStringBuilder.reflectionToString(this);
106 }
107 }