Synchronizing calendars for gmail and some events.

This commit is contained in:
Burak Kaan Köse
2024-12-27 00:18:46 +01:00
parent 1668dfcce6
commit fbc3ca4517
44 changed files with 1030 additions and 320 deletions

View File

@@ -2,6 +2,7 @@
{
public enum AttendeeStatus
{
NeedsAction,
Accepted,
Tentative,
Declined

View File

@@ -2,7 +2,9 @@
{
public enum CalendarItemVisibility
{
Default,
Public,
Private
Private,
Confidential
}
}

View File

@@ -2,8 +2,10 @@
{
public enum CalendarSynchronizationType
{
AllCalendars, // Sync all calendars.
SingleCalendar, // Sync only one calendar.
ExecuteRequests, // Execute all requests in the queue.
CalendarMetadata, // Sync calendar metadata.
CalendarEvents, // Sync all events for all calendars.
SingleCalendar, // Sync events for only specified calendars.
UpdateProfile // Update profile information only.
}
}