View Javadoc
1   package org.oxerr.stubhub.client.model;
2   
3   import java.time.LocalDateTime;
4   
5   public class EventMappingRequest {
6   
7   	private String eventName;
8   
9   	/**
10  	 * Date and Time that the event start.
11  	 * Must be YYYY-MM-ddTHH:mm:ss format (e.g. 2000-01-01T12:00:00)
12  	 */
13  	private LocalDateTime eventDate;
14  
15  	private String venueName;
16  
17  	private Boolean isEventDateConfirmed;
18  
19  	private String eventNote;
20  
21  	private String city;
22  
23  	private String stateProvince;
24  
25  	/**
26  	 * CountryCode must be in ISO format (e.g. US, CA, MX, etc.)
27  	 */
28  	private String countryCode;
29  
30  	public String getEventName() {
31  		return eventName;
32  	}
33  
34  	public void setEventName(String eventName) {
35  		this.eventName = eventName;
36  	}
37  
38  	public LocalDateTime getEventDate() {
39  		return eventDate;
40  	}
41  
42  	public void setEventDate(LocalDateTime eventDate) {
43  		this.eventDate = eventDate;
44  	}
45  
46  	public String getVenueName() {
47  		return venueName;
48  	}
49  
50  	public void setVenueName(String venueName) {
51  		this.venueName = venueName;
52  	}
53  
54  	public Boolean getIsEventDateConfirmed() {
55  		return isEventDateConfirmed;
56  	}
57  
58  	public void setIsEventDateConfirmed(Boolean isEventDateConfirmed) {
59  		this.isEventDateConfirmed = isEventDateConfirmed;
60  	}
61  
62  	public String getEventNote() {
63  		return eventNote;
64  	}
65  
66  	public void setEventNote(String eventNote) {
67  		this.eventNote = eventNote;
68  	}
69  
70  	public String getCity() {
71  		return city;
72  	}
73  
74  	public void setCity(String city) {
75  		this.city = city;
76  	}
77  
78  	public String getStateProvince() {
79  		return stateProvince;
80  	}
81  
82  	public void setStateProvince(String stateProvince) {
83  		this.stateProvince = stateProvince;
84  	}
85  
86  	public String getCountryCode() {
87  		return countryCode;
88  	}
89  
90  	public void setCountryCode(String countryCode) {
91  		this.countryCode = countryCode;
92  	}
93  
94  }