File indexing completed on 2024-05-12 05:22:13

0001 /*
0002  * This file is part of LibKGAPI library
0003  *
0004  * SPDX-FileCopyrightText: 2018 Daniel Vrátil <dvratil@kde.org>
0005  *
0006  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007  */
0008 
0009 #pragma once
0010 
0011 #include "kgapicalendar_export.h"
0012 
0013 
0014 namespace KGAPI2 {
0015 
0016 Q_NAMESPACE_EXPORT(KGAPICALENDAR_EXPORT)
0017 
0018 /**
0019  * Determines whether Google Calendar should send updates to participants
0020  */
0021 enum class SendUpdatesPolicy
0022 {
0023     All,    /// Send updates to all attendees
0024     ExternalOnly, /// Only send updates to non-Google Calendar participants
0025     None, /// Don't send any notifications
0026 };
0027 
0028 Q_ENUM_NS(KGAPI2::SendUpdatesPolicy)
0029 
0030 } // namespace KGAPI
0031