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

Class to hold results. More...

#include <results.hpp>

Inheritance diagram for Mastodon::Easy::Results:
Mastodon::Easy::Entity

Public Member Functions

 Results (const string &json)
 Constructs a Results object from a JSON string. More...
 
 Results ()
 Constructs an empty Results object.
 
const std::vector< Accountaccounts () const
 Returns an array of matched Accounts.
 
const std::vector< Statusstatuses () const
 Returns an array of matched Statuses.
 
const std::vector< string > hashtags_v1 () const
 Returns an array of matched hashtags as string. More...
 
const std::vector< Taghashtags_v2 () const
 Returns an array of matched hashtags as Easy::Tag. More...
 
const std::vector< string > hashtags () const
 Alias for hashtags_v1.
 
- 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.
 
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.
 
const string error () const
 Returns error string sent by the server.
 
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 std::uint_fast64_t stouint64 (const string &str) const
 

Detailed Description

Class to hold results.

Constructor & Destructor Documentation

◆ Results()

Results::Results ( const string &  json)
explicit

Constructs a Results object from a JSON string.

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

Member Function Documentation

◆ hashtags_v1()

const std::vector< string > Results::hashtags_v1 ( ) const

Returns an array of matched hashtags as string.

Since
0.16.0
64 {
65  return get_vector("hashtags");
66 }
const std::vector< string > get_vector(const string &key) const
Returns the value of key as vector.
Definition: entity.cpp:207

◆ hashtags_v2()

const std::vector< Easy::Tag > Results::hashtags_v2 ( ) const

Returns an array of matched hashtags as Easy::Tag.

Since
0.16.0
69 {
70  const Json::Value node = get("hashtags");
71  if (node.isArray())
72  {
73  std::vector<Easy::Tag> vec;
74  for (const Json::Value &value : node)
75  {
76  vec.push_back(Easy::Tag(value.toStyledString()));
77  }
78  return vec;
79  }
80 
81  return {};
82 }
Class to hold tags.
Definition: tag.hpp:42

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