io.syndesis.connector.calendar.GoogleCalendarEventModel Maven / Gradle / Ivy
/*
* Copyright (C) 2016 Red Hat, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package io.syndesis.connector.calendar;
public class GoogleCalendarEventModel {
String title;
String description;
String attendees;
String startDate;
String startTime;
String endDate;
String endTime;
String location;
String eventId;
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public String getAttendees() {
return attendees;
}
public void setAttendees(String attendees) {
this.attendees = attendees;
}
public String getStartDate() {
return startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
public String getStartTime() {
return startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public String getEndDate() {
return endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public String getEndTime() {
return endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getLocation() {
return location;
}
public void setLocation(String location) {
this.location = location;
}
public String getEventId() {
return eventId;
}
public void setEventId(String eventId) {
this.eventId = eventId;
}
@Override
public String toString() {
return "GoogleCalendarEventModel [title=" + title + ", description=" + description + ", attendees=" + attendees + ", startDate=" + startDate + ", startTime=" + startTime
+ ", endDate=" + endDate + ", endTime=" + endTime + ", location=" + location + ", eventId=" + eventId + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy