gogol-apps-calendar-0.0.1: Google Calendar SDK.

Copyright(c) 2015 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.Google.Resource.Calendar.Events.Patch

Contents

Description

Updates an event. This method supports patch semantics.

See: Calendar API Reference for calendar.events.patch.

Synopsis

REST Resource

type EventsPatchResource = "calendar" :> ("v3" :> ("calendars" :> (Capture "calendarId" Text :> ("events" :> (Capture "eventId" Text :> (QueryParam "maxAttendees" (Textual Int32) :> (QueryParam "sendNotifications" Bool :> (QueryParam "supportsAttachments" Bool :> (QueryParam "alwaysIncludeEmail" Bool :> (QueryParam "alt" AltJSON :> (ReqBody `[JSON]` Event :> Patch `[JSON]` Event))))))))))) Source

A resource alias for calendar.events.patch method which the EventsPatch request conforms to.

Creating a Request

eventsPatch Source

Creates a value of EventsPatch with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

data EventsPatch Source

Updates an event. This method supports patch semantics.

See: eventsPatch smart constructor.

Request Lenses

epCalendarId :: Lens' EventsPatch Text Source

Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the "primary" keyword.

epPayload :: Lens' EventsPatch Event Source

Multipart request metadata.

epMaxAttendees :: Lens' EventsPatch (Maybe Int32) Source

The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional.

epSendNotifications :: Lens' EventsPatch (Maybe Bool) Source

Whether to send notifications about the event update (e.g. attendee's responses, title changes, etc.). Optional. The default is False.

epSupportsAttachments :: Lens' EventsPatch (Maybe Bool) Source

Whether API client performing operation supports event attachments. Optional. The default is False.

epAlwaysIncludeEmail :: Lens' EventsPatch (Maybe Bool) Source

Whether to always include a value in the email field for the organizer, creator and attendees, even if no real email is available (i.e. a generated, non-working value will be provided). The use of this option is discouraged and should only be used by clients which cannot handle the absence of an email address value in the mentioned places. Optional. The default is False.

epEventId :: Lens' EventsPatch Text Source

Event identifier.