com.google.api.services.calendar.model.FreeBusyResponse Maven / Gradle / Ivy
/*
* Copyright 2010 Google 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.
*/
/*
* This code was generated by https://code.google.com/p/google-apis-client-generator/
* (build: 2015-11-16 19:10:01 UTC)
* on 2015-12-11 at 13:02:43 UTC
* Modify at your own risk.
*/
package com.google.api.services.calendar.model;
/**
* Model definition for FreeBusyResponse.
*
* This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Calendar API. For a detailed explanation see:
* http://code.google.com/p/google-http-java-client/wiki/JSON
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class FreeBusyResponse extends com.google.api.client.json.GenericJson {
/**
* List of free/busy information for calendars.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.Map calendars;
/**
* Expansion of groups.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.Map groups;
static {
// hack to force ProGuard to consider FreeBusyGroup used, since otherwise it would be stripped out
// see http://code.google.com/p/google-api-java-client/issues/detail?id=528
com.google.api.client.util.Data.nullOf(FreeBusyGroup.class);
}
/**
* Type of the resource ("calendar#freeBusy").
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String kind;
/**
* The end of the interval.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private com.google.api.client.util.DateTime timeMax;
/**
* The start of the interval.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private com.google.api.client.util.DateTime timeMin;
/**
* List of free/busy information for calendars.
* @return value or {@code null} for none
*/
public java.util.Map getCalendars() {
return calendars;
}
/**
* List of free/busy information for calendars.
* @param calendars calendars or {@code null} for none
*/
public FreeBusyResponse setCalendars(java.util.Map calendars) {
this.calendars = calendars;
return this;
}
/**
* Expansion of groups.
* @return value or {@code null} for none
*/
public java.util.Map getGroups() {
return groups;
}
/**
* Expansion of groups.
* @param groups groups or {@code null} for none
*/
public FreeBusyResponse setGroups(java.util.Map groups) {
this.groups = groups;
return this;
}
/**
* Type of the resource ("calendar#freeBusy").
* @return value or {@code null} for none
*/
public java.lang.String getKind() {
return kind;
}
/**
* Type of the resource ("calendar#freeBusy").
* @param kind kind or {@code null} for none
*/
public FreeBusyResponse setKind(java.lang.String kind) {
this.kind = kind;
return this;
}
/**
* The end of the interval.
* @return value or {@code null} for none
*/
public com.google.api.client.util.DateTime getTimeMax() {
return timeMax;
}
/**
* The end of the interval.
* @param timeMax timeMax or {@code null} for none
*/
public FreeBusyResponse setTimeMax(com.google.api.client.util.DateTime timeMax) {
this.timeMax = timeMax;
return this;
}
/**
* The start of the interval.
* @return value or {@code null} for none
*/
public com.google.api.client.util.DateTime getTimeMin() {
return timeMin;
}
/**
* The start of the interval.
* @param timeMin timeMin or {@code null} for none
*/
public FreeBusyResponse setTimeMin(com.google.api.client.util.DateTime timeMin) {
this.timeMin = timeMin;
return this;
}
@Override
public FreeBusyResponse set(String fieldName, Object value) {
return (FreeBusyResponse) super.set(fieldName, value);
}
@Override
public FreeBusyResponse clone() {
return (FreeBusyResponse) super.clone();
}
}