Description Usage Arguments Details Value Examples
Makes arbitrary edits to the metadata of an event. This method operates on the Google Calendar API Events resource.
1 | gc_event_edit(x, ..., verbose = TRUE)
|
x |
|
verbose |
Logical indicating whether to print informative messages. |
... |
Optional named properties and their new values to be passed as part of the HTTP request body. |
For more information on properties available for editing, see Events: Insert. in the Google Calendar API reference documentation.
The edited resource as an event
object.
1 2 3 4 5 6 7 8 9 10 | ## Not run:
gc_new("Bar Trivia") %>%
gc_event_new(
start = list(dateTime = "2016-09-21T20:00:00Z"),
end = list(dateTime = "2016-09-21T23:30:00Z"),
summary = "Dons"
) %>%
gc_event_edit(summary = "Donnelly's Irish Pub")
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.