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

Class to hold applications. More...

#include <application.hpp>

Inheritance diagram for Mastodon::Easy::Application:
Mastodon::Easy::Entity

Public Member Functions

 Application (const string &json)
 Constructs an Application object from a JSON string. More...
 
 Application ()
 Constructs an empty Application object. More...
 
virtual bool valid () const
 Returns true if the Entity holds valid data. More...
 
const string name () const
 Returns the name of the application. More...
 
const string website () const
 Returns the website of the application. 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...
 
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 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

- 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...
 
uint_fast64_t get_uint64 (const string &key) const
 Returns the value of key as std::uint_fast64_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 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...
 
void set (const string &key, const Json::Value &value)
 Sets the value of key. More...
 
std::uint_fast64_t stouint64 (const string &str) const
 
bool check_valid (const std::vector< string > &attributes) const
 Checks if an Entity is valid. More...
 

Detailed Description

Class to hold applications.

Since
before 0.11.0

Constructor & Destructor Documentation

◆ Application() [1/2]

Application::Application ( const string &  json)
explicit

Constructs an Application 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:65

◆ Application() [2/2]

Application::Application ( )

Constructs an empty Application object.

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

Member Function Documentation

◆ name()

const string Application::name ( ) const

Returns the name of the application.

Since
before 0.11.0
36 {
37  return get_string("name");
38 }
const string get_string(const string &key) const
Returns the value of key as std::string.
Definition: entity.cpp:134

◆ valid()

bool Application::valid ( ) const
virtual

Returns true if the Entity holds valid data.

Since
before 0.11.0 (virtual since 0.18.2)

Implements Mastodon::Easy::Entity.

31 {
32  return Entity::check_valid({"name"});
33 }
bool check_valid(const std::vector< string > &attributes) const
Checks if an Entity is valid.
Definition: entity.cpp:69

◆ website()

const string Application::website ( ) const

Returns the website of the application.

Since
before 0.11.0
41 {
42  return get_string("website");
43 }
const string get_string(const string &key) const
Returns the value of key as std::string.
Definition: entity.cpp:134

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