1 package org.oxerr.stubhub.client.model;
2
3 public class VenueResponse {
4
5 private Integer id;
6
7 private String name;
8
9 private String address;
10
11 private String city;
12
13 private String state;
14
15 private String country;
16
17 private String postalCode;
18
19 private String timeZone;
20
21 public Integer getId() {
22 return id;
23 }
24
25 public void setId(Integer id) {
26 this.id = id;
27 }
28
29 public String getName() {
30 return name;
31 }
32
33 public void setName(String name) {
34 this.name = name;
35 }
36
37 public String getAddress() {
38 return address;
39 }
40
41 public void setAddress(String address) {
42 this.address = address;
43 }
44
45 public String getCity() {
46 return city;
47 }
48
49 public void setCity(String city) {
50 this.city = city;
51 }
52
53 public String getState() {
54 return state;
55 }
56
57 public void setState(String state) {
58 this.state = state;
59 }
60
61 public String getCountry() {
62 return country;
63 }
64
65 public void setCountry(String country) {
66 this.country = country;
67 }
68
69 public String getPostalCode() {
70 return postalCode;
71 }
72
73 public void setPostalCode(String postalCode) {
74 this.postalCode = postalCode;
75 }
76
77 public String getTimeZone() {
78 return timeZone;
79 }
80
81 public void setTimeZone(String timeZone) {
82 this.timeZone = timeZone;
83 }
84
85 }