Description Usage Arguments Details Value Examples
Creates an event in a Google Calendar. This method operates on the Google Calendar API Events resource.
1 |
x |
|
start, end |
Named list representing the start or end time. May
include the following properties: |
sendNotifications |
Logical indicating whether to send notifications about the event. |
verbose |
Logical indicating whether to print informative messages. |
... |
Additional parameters to be passed as part of the HTTP request body. More information on these optional values is available below. |
For more information on the structure of an event
object, see
the Google Calendar API
Events Resource Overview.
Event metadata as an invisible event
object (a custom
class wrapping a named list).
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
cal <- gc_summary("Commitments")
gc_event_new(
cal,
start = list(dateTime = "2016-06-01T09:00:00Z"),
end = list(dateTime = "2016-06-01T10:00:00Z"),
summary = "Lunch with Alyssa"
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.