mastodon-cpp
0.110.0
|
Class to hold conversations. More...
#include <conversation.hpp>
Public Member Functions | |
virtual bool | valid () const override |
Returns true if the Entity holds valid data. More... | |
const string | id () const |
Returns the id of the conversation. More... | |
const std::vector< Account > | accounts () const |
Returns the participating accounts. More... | |
const Status | last_status () const |
Returns the last status. More... | |
bool | unread () const |
Returns true if unread. More... | |
Entity (const string &json) | |
Constructs an Entity object from a JSON string. More... | |
Entity (const Json::Value &object) | |
Constructs an Entity object from a JSON object. More... | |
Entity () | |
Constructs an empty Entity object. More... | |
![]() | |
Entity (const string &json) | |
Constructs an Entity object from a JSON string. More... | |
Entity (const Json::Value &object) | |
Constructs an Entity object from a JSON object. More... | |
Entity () | |
Constructs an empty Entity object. More... | |
virtual | ~Entity () |
Destroys the object. More... | |
operator const Json::Value () const | |
void | from_string (const string &json) |
Replaces the Entity with a new one from a JSON string. More... | |
const string | to_string () const |
Returns the JSON of the Entity as formatted string. More... | |
void | from_object (const Json::Value &object) |
Replaces the Entity with a new one from a JSON object. More... | |
const Json::Value | to_object () const |
Returns the JSON object of the Entity. More... | |
const string | error () const |
Returns error string sent by the server. More... | |
bool | was_set () const |
Returns true if the last requested value was set, false if it was unset. More... | |
Additional Inherited Members | |
![]() | |
const Json::Value | get (const string &key) const |
Returns the value of key as Json::Value. More... | |
const string | get_string (const string &key) const |
Returns the value of key as std::string. More... | |
uint64_t | get_uint64 (const string &key) const |
Returns the value of key as std::uint64_t. More... | |
double | get_double (const string &key) const |
Returns the value of key as double. More... | |
bool | get_bool (const string &key) const |
Returns the value of key as bool. More... | |
const Easy::time_type | get_time (const string &key) const |
Returns the value of key as Easy::time. More... | |
const std::vector< string > | get_vector (const string &key) const |
Returns the value of key as vector. More... | |
void | set (const string &key, const Json::Value &value) |
Sets the value of key. More... | |
std::uint64_t | stouint64 (const string &str) const |
Returns value of str as uint64_t. | |
bool | check_valid (const std::vector< string > &attributes) const |
Checks if an Entity is valid. More... | |
Class to hold conversations.
const std::vector< Easy::Account > Conversation::accounts | ( | ) | const |
Returns the participating accounts.
Easy::Entity::Entity |
Constructs an empty Entity object.
|
explicit |
|
explicit |
Constructs an Entity object from a JSON string.
json | JSON string |
const string Conversation::id | ( | ) | const |
Returns the id of the conversation.
const Easy::Status Conversation::last_status | ( | ) | const |
Returns the last status.
bool Conversation::unread | ( | ) | const |
Returns true if unread.
|
overridevirtual |
Returns true if the Entity holds valid data.
Implements Mastodon::Easy::Entity.