This repository has been archived on 2020-05-10. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon-cpp/src/easy/entities/notification.hpp

95 lines
2.4 KiB
C++
Raw Normal View History

/* This file is part of mastodon-cpp.
2019-03-20 06:15:43 +01:00
* Copyright © 2018, 2019 tastytea <tastytea@tastytea.de>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef MASTODON_CPP_EASY_NOTIFICATION_HPP
#define MASTODON_CPP_EASY_NOTIFICATION_HPP
#include <string>
#include <cstdint>
// If we are compiling mastodon-cpp, use another include path
#ifdef MASTODON_CPP
#include "mastodon-cpp.hpp"
2018-04-03 00:13:21 +02:00
#include "easy/entities/account.hpp"
#include "easy/entities/status.hpp"
2019-03-29 14:44:39 +01:00
#include "easy/entity.hpp"
#else
#include <mastodon-cpp/mastodon-cpp.hpp>
2018-04-11 16:06:32 +02:00
#include <mastodon-cpp/easy/entities/account.hpp>
#include <mastodon-cpp/easy/entities/status.hpp>
2019-03-29 14:44:39 +01:00
#include <mastodon-cpp/easy/entity.hpp>
#endif
using std::string;
using std::uint64_t;
namespace Mastodon
2019-03-29 14:44:39 +01:00
{
namespace Easy
{
/*!
* @brief Class to hold notifications
2019-03-29 14:44:39 +01:00
*
* @since before 0.11.0
*/
2019-03-29 14:44:39 +01:00
class Notification : public Entity
{
public:
2019-03-11 20:48:54 +01:00
using Entity::Entity;
virtual bool valid() const override;
/*!
* @brief Returns the Account sending the notification to the user
2019-03-29 14:44:39 +01:00
*
* @since before 0.11.0
*/
const Account account() const;
/*!
* @brief Returns time of creation
2019-03-29 14:44:39 +01:00
*
* @since before 0.11.0
*/
2019-05-13 21:26:55 +02:00
const Easy::time_type created_at() const;
/*!
* @brief Returns notification ID
2019-03-29 14:44:39 +01:00
*
* @since before 0.11.0
*/
const string id() const;
/*!
* @brief Returns the Status associated with the notification, if
* applicable
2019-03-29 14:44:39 +01:00
*
* @since before 0.11.0
*/
const Status status() const;
/*!
* @brief Returns notification type
2019-03-29 14:44:39 +01:00
*
* @since before 0.11.0
*/
2018-12-04 11:26:28 +01:00
Easy::notification_type type() const;
};
}
2019-03-29 14:44:39 +01:00
}
#endif // MASTODON_CPP_EASY_NOTIFICATION_HPP