Calendar API v3 (revision 30)



Uses of Class
com.google.api.services.calendar.model.Event

Packages that use Event
com.google.api.services.calendar   
com.google.api.services.calendar.model   
 

Uses of Event in com.google.api.services.calendar
 

Methods in com.google.api.services.calendar with parameters of type Event
 Calendar.Events.CalendarImport Calendar.Events.calendarImport(java.lang.String calendarId, Event content)
          Imports an event.
 Calendar.Events.Insert Calendar.Events.insert(java.lang.String calendarId, Event content)
          Creates an event.
 Calendar.Events.Patch Calendar.Events.patch(java.lang.String calendarId, java.lang.String eventId, Event content)
          Updates an event.
 Calendar.Events.Update Calendar.Events.update(java.lang.String calendarId, java.lang.String eventId, Event content)
          Updates an event.
 

Uses of Event in com.google.api.services.calendar.model
 

Methods in com.google.api.services.calendar.model that return Event
 Event Event.setAnyoneCanAddSelf(java.lang.Boolean anyoneCanAddSelf)
          Whether anyone can invite themselves to the event.
 Event Event.setAttendees(java.util.List<EventAttendee> attendees)
          The attendees of the event.
 Event Event.setAttendeesOmitted(java.lang.Boolean attendeesOmitted)
          Whether attendees may have been omitted from the event's representation.
 Event Event.setColorId(java.lang.String colorId)
          The color of the event.
 Event Event.setCreated(DateTime created)
          Creation time of the event (as a RFC 3339 timestamp).
 Event Event.setCreator(Event.Creator creator)
          The creator of the event.
 Event Event.setDescription(java.lang.String description)
          Description of the event.
 Event Event.setEnd(EventDateTime end)
          The (exclusive) end time of the event.
 Event Event.setEndTimeUnspecified(java.lang.Boolean endTimeUnspecified)
          Whether the end time is actually unspecified.
 Event Event.setEtag(java.lang.String etag)
          ETag of the resource.
 Event Event.setExtendedProperties(Event.ExtendedProperties extendedProperties)
          Extended properties of the event.
 Event Event.setGadget(Event.Gadget gadget)
          A gadget that extends this event.
 Event Event.setGuestsCanInviteOthers(java.lang.Boolean guestsCanInviteOthers)
          Whether attendees other than the organizer can invite others to the event.
 Event Event.setGuestsCanModify(java.lang.Boolean guestsCanModify)
          Whether attendees other than the organizer can modify the event.
 Event Event.setGuestsCanSeeOtherGuests(java.lang.Boolean guestsCanSeeOtherGuests)
          Whether attendees other than the organizer can see who the event's attendees are.
 Event Event.setHangoutLink(java.lang.String hangoutLink)
          An absolute link to the Google+ hangout associated with this event.
 Event Event.setHtmlLink(java.lang.String htmlLink)
          An absolute link to this event in the Google Calendar Web UI.
 Event Event.setICalUID(java.lang.String iCalUID)
          Event ID in the iCalendar format.
 Event Event.setId(java.lang.String id)
          Identifier of the event.
 Event Event.setKind(java.lang.String kind)
          Type of the resource ("calendar#event").
 Event Event.setLocation(java.lang.String location)
          Geographic location of the event as free-form text.
 Event Event.setLocked(java.lang.Boolean locked)
          Whether this is a locked event copy where no changes can be made to the main event fields "summary", "description", "location", "start", "end" or "recurrence".
 Event Event.setOrganizer(Event.Organizer organizer)
          The organizer of the event.
 Event Event.setOriginalStartTime(EventDateTime originalStartTime)
          For an instance of a recurring event, this is the time at which this event would start according to the recurrence data in the recurring event identified by recurringEventId.
 Event Event.setPrivateCopy(java.lang.Boolean privateCopy)
          Whether this is a private event copy where changes are not shared with other copies on other calendars.
 Event Event.setRecurrence(java.util.List<java.lang.String> recurrence)
          List of RRULE, EXRULE, RDATE and EXDATE lines for a recurring event.
 Event Event.setRecurringEventId(java.lang.String recurringEventId)
          For an instance of a recurring event, this is the event ID of the recurring event itself.
 Event Event.setReminders(Event.Reminders reminders)
          Information about the event's reminders for the authenticated user.
 Event Event.setSequence(java.lang.Integer sequence)
          Sequence number as per iCalendar.
 Event Event.setStart(EventDateTime start)
          The (inclusive) start time of the event.
 Event Event.setStatus(java.lang.String status)
          Status of the event.
 Event Event.setSummary(java.lang.String summary)
          Title of the event.
 Event Event.setTransparency(java.lang.String transparency)
          Whether the event blocks time on the calendar.
 Event Event.setUpdated(DateTime updated)
          Last modification time of the event (as a RFC 3339 timestamp).
 Event Event.setVisibility(java.lang.String visibility)
          Visibility of the event.
 

Methods in com.google.api.services.calendar.model that return types with arguments of type Event
 java.util.List<Event> Events.getItems()
          List of events on the calendar.
 

Method parameters in com.google.api.services.calendar.model with type arguments of type Event
 Events Events.setItems(java.util.List<Event> items)
          List of events on the calendar.