mastodon-cpp  0.17.0
Public Member Functions | List of all members
Mastodon::Easy::Relationship Class Reference

Class to hold relationships. More...

#include <relationship.hpp>

Inheritance diagram for Mastodon::Easy::Relationship:
Mastodon::Easy::Entity

Public Member Functions

 Relationship (const string &json)
 Constructs a Relationship object from a JSON string. More...
 
 Relationship ()
 Constructs an empty Relationship object. More...
 
const bool blocking () const
 Returns true if the user is blocking the account. More...
 
const bool domain_blocking () const
 Returns true if the user is blocking the account's domain. More...
 
const bool followed_by () const
 Returns true if the user is being followed by the account. More...
 
const bool following () const
 Returns true if the user is being following the account. More...
 
const uint_fast64_t id () const
 Returns the target account ID. More...
 
const bool muting () const
 Returns true if the user is muting the account. More...
 
const bool muting_notifications () const
 Returns true if the user is also muting notifications. More...
 
const bool requested () const
 Returns true if the user has requested to follow the account. More...
 
- Public Member Functions inherited from Mastodon::Easy::Entity
 Entity (const string &json)
 Constructs an Entity object from a JSON string. More...
 
 Entity ()
 Constructs an empty Entity object. More...
 
const void from_string (const string &json)
 Replaces the Entity with a new one from a JSON string. More...
 
const Json::Value to_object () const
 Returns the JSON object of the Entity. More...
 
const bool valid () const
 Returns true if the Entity holds valid data. More...
 
const string error () const
 Returns error string sent by the server. More...
 
const bool was_set () const
 Returns true if the last requested value was set, false if it was unset. More...
 

Additional Inherited Members

- Protected Member Functions inherited from Mastodon::Easy::Entity
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...
 
const uint_fast64_t get_uint64 (const string &key) const
 Returns the value of key as std::uint_fast64_t. More...
 
const double get_double (const string &key) const
 Returns the value of key as double. More...
 
const bool get_bool (const string &key) const
 Returns the value of key as bool. More...
 
const system_clock::time_point get_time_point (const string &key) const
 Returns the value of key as time_point. More...
 
const std::vector< string > get_vector (const string &key) const
 Returns the value of key as vector. More...
 
const void set (const string &key, const Json::Value &value)
 Sets the value of key. More...
 
const std::uint_fast64_t stouint64 (const string &str) const
 

Detailed Description

Class to hold relationships.

before 0.11.0

Constructor & Destructor Documentation

◆ Relationship() [1/2]

Relationship::Relationship ( const string &  json)
explicit

Constructs a Relationship object from a JSON string.

Parameters
jsonJSON string
Since
before 0.11.0
23 : Entity(json)
24 {}
Entity()
Constructs an empty Entity object.
Definition: entity.cpp:70

◆ Relationship() [2/2]

Relationship::Relationship ( )

Constructs an empty Relationship object.

Since
before 0.11.0
27 : Entity()
28 {}
Entity()
Constructs an empty Entity object.
Definition: entity.cpp:70

Member Function Documentation

◆ blocking()

const bool Relationship::blocking ( ) const

Returns true if the user is blocking the account.

Since
before 0.11.0
31 {
32  return get_bool("blocking");
33 }
const bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:173

◆ domain_blocking()

const bool Relationship::domain_blocking ( ) const

Returns true if the user is blocking the account's domain.

Since
before 0.11.0
36 {
37  return get_bool("domain_blocking");
38 }
const bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:173

◆ followed_by()

const bool Relationship::followed_by ( ) const

Returns true if the user is being followed by the account.

Since
before 0.11.0
41 {
42  return get_bool("followed_by");
43 }
const bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:173

◆ following()

const bool Relationship::following ( ) const

Returns true if the user is being following the account.

Since
before 0.11.0
46 {
47  return get_bool("following");
48 }
const bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:173

◆ id()

const uint_fast64_t Relationship::id ( ) const

Returns the target account ID.

Since
before 0.11.0
51 {
52  return stouint64(get_string("id"));
53 }
const string get_string(const string &key) const
Returns the value of key as std::string.
Definition: entity.cpp:131

◆ muting()

const bool Relationship::muting ( ) const

Returns true if the user is muting the account.

Since
before 0.11.0
56 {
57  return get_bool("muting");
58 }
const bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:173

◆ muting_notifications()

const bool Relationship::muting_notifications ( ) const

Returns true if the user is also muting notifications.

Since
before 0.11.0
61 {
62  return get_bool("muting_notifications");
63 }
const bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:173

◆ requested()

const bool Relationship::requested ( ) const

Returns true if the user has requested to follow the account.

Since
before 0.11.0
66 {
67  return get_bool("requested");
68 }
const bool get_bool(const string &key) const
Returns the value of key as bool.
Definition: entity.cpp:173

The documentation for this class was generated from the following files: