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/list.cpp

42 lines
1.1 KiB
C++
Raw Normal View History

2018-03-30 20:30:29 +02:00
/* This file is part of mastodon-cpp.
2019-03-20 06:15:43 +01:00
* Copyright © 2018, 2019 tastytea <tastytea@tastytea.de>
2019-03-29 14:44:39 +01:00
*
2018-03-30 20:30:29 +02:00
* This program is free software: you can redistribute it and/or modify
2019-08-15 22:53:38 +02:00
* it under the terms of the GNU Affero General Public License as published by
2018-03-30 20:30:29 +02:00
* 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
2019-08-15 22:53:38 +02:00
* GNU Affero General Public License for more details.
2018-03-30 20:30:29 +02:00
*
2019-08-15 22:53:38 +02:00
* You should have received a copy of the GNU Affero General Public License
2018-03-30 20:30:29 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "list.hpp"
using namespace Mastodon;
using List = Easy::List;
using std::string;
using std::uint64_t;
2018-03-30 20:30:29 +02:00
2018-12-04 11:26:28 +01:00
bool List::valid() const
{
return Entity::check_valid(
{
"id",
"title"
});
}
const string List::id() const
2018-03-30 20:30:29 +02:00
{
return get_string("id");
2018-03-30 20:30:29 +02:00
}
const string List::title() const
{
return get_string("title");
}