Created
September 10, 2021 12:25
-
-
Save jTakasuRyuji/631ebc4f243cee5e0653ad452cab676b to your computer and use it in GitHub Desktop.
takoyaki-festival
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function hogeGS() { | |
| let calendar = CalendarApp.getDefaultCalendar(); | |
| let title = "takoyaki-festival"; | |
| let startTime = new Date("2021/9/10 21:30"); | |
| let endTime = new Date("2021/9/10 21:40"); | |
| let options = { | |
| description: "ほげほげふがふが", | |
| location: "マイハウス" | |
| } | |
| calendar.createEvent(title, startTime, endTime, options); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment