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

Class to hold push subscriptions. More...

#include <pushsubscription.hpp>

Inheritance diagram for Mastodon::Easy::PushSubscription:
Mastodon::Easy::Entity

Public Member Functions

 PushSubscription (const string &json)
 Constructs an PushSubscription object from a JSON string. More...
 
 PushSubscription ()
 Constructs an empty PushSubscription object.
 
const uint_fast64_t id () const
 Returns push subscription ID.
 
const string endpoint () const
 Returns the endpoint URL.
 
const string server_key () const
 Returns the server public key for signature verification.
 
const Easy::alertmap alerts () const
 Returns a map of 'notification event type' and 'push is requested or not'.
 
- 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...
 

Protected Member Functions

const bool s_to_b (const string &str) const
 Converts string to bool. More...
 
- 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 push subscriptions.

Since
0.14.0

Constructor & Destructor Documentation

◆ PushSubscription()

PushSubscription::PushSubscription ( const string &  json)
explicit

Constructs an PushSubscription object from a JSON string.

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

Member Function Documentation

◆ s_to_b()

const bool PushSubscription::s_to_b ( const string &  str) const
protected

Converts string to bool.

Returns
true if str is equal to "true", false otherwise
80 {
81  if (str.compare("true") == 0)
82  {
83  return true;
84  }
85  else
86  {
87  return false;
88  }
89 }

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